bsdi.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * port_protos.h
  4.  *   port-specific prototypes for SunOS 4
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * port_protos.h,v 1.2 1995/05/25 22:51:03 andrew Exp
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef PORT_PROTOS_H
  14. #define PORT_PROTOS_H
  15. #include "fmgr.h" /* for func_ptr */
  16. #include "utils/dynamic_loader.h"
  17. /* dynloader.c */
  18. #ifndef  PRE_BSDI_2_1
  19. #include <dlfcn.h>
  20. #define   pg_dlopen(f)   dlopen(f, RTLD_LAZY)
  21. #define   pg_dlsym   dlsym
  22. #define   pg_dlclose   dlclose
  23. #define   pg_dlerror   dlerror
  24. #else
  25. #define pg_dlsym(handle, funcname)   ((func_ptr) dld_get_func((funcname)))
  26. #define pg_dlclose(handle)   ({ dld_unlink_by_file(handle, 1); free(handle); })
  27. #endif
  28. /* port.c */
  29. #endif  /* PORT_PROTOS_H */