Query in SQL function still not schema-safe; add a couple
[PostgreSQL.git] / src / backend / port / dynloader / osf.h
blob92642c50e031dfc703178544677a58cf3e6d25d4
1 /*-------------------------------------------------------------------------
3 * osf.h
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
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
15 #ifndef PORT_PROTOS_H
16 #define PORT_PROTOS_H
18 #include <dlfcn.h>
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.
35 #ifndef RTLD_NOW
36 #define RTLD_NOW 1
37 #endif
38 #ifndef RTLD_GLOBAL
39 #define RTLD_GLOBAL 0
40 #endif
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 */