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

数据库系统

开发平台:

Unix_Linux

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