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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * dynloader.h
  4.  *   port-specific prototypes for Intel x86/Intel SVR4
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: svr4.h,v 1.3 1999/02/13 23:17:27 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef DYNLOADER_H
  14. #define DYNLOADER_H
  15. #include <dlfcn.h>
  16. #include "fmgr.h" /* for func_ptr */
  17. #include "utils/dynamic_loader.h"
  18. /* dynloader.h */
  19. /*
  20.  * Dynamic Loader on Intel x86/Intel SVR4.
  21.  *
  22.  * this dynamic loader uses the system dynamic loading interface for shared
  23.  * libraries (ie. dlopen/dlsym/dlclose). The user must specify a shared
  24.  * library as the file to be dynamically loaded.
  25.  *
  26.  */
  27. #define pg_dlopen(f) dlopen(f,RTLD_LAZY)
  28. #define pg_dlsym dlsym
  29. #define pg_dlclose dlclose
  30. #define pg_dlerror dlerror
  31. #endif  /* DYNLOADER_H */