1 /*-------------------------------------------------------------------------
4 * prototypes for OSF/1-specific routines
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
12 *-------------------------------------------------------------------------
19 #include "utils/dynamic_loader.h"
22 * Dynamic Loader on Alpha OSF/1.x
24 * this dynamic loader uses the system dynamic loading interface for shared
25 * libraries (ie. dlopen/dlsym/dlclose). The user must specify a shared
26 * library as the file to be dynamically loaded.
30 * In some older systems, the RTLD_NOW flag isn't defined and the mode
31 * argument to dlopen must always be 1. The RTLD_GLOBAL flag is wanted
32 * if available, but it doesn't exist everywhere.
33 * If it doesn't exist, set it to 0 so it has no effect.
42 #define pg_dlopen(f) dlopen((f), RTLD_NOW | RTLD_GLOBAL)
43 #define pg_dlsym(h, f) ((PGFunction) dlsym(h, f))
44 #define pg_dlclose(h) dlclose(h)
45 #define pg_dlerror() dlerror()
47 #endif /* PORT_PROTOS_H */