Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef PORT_PROTOS_H
00015 #define PORT_PROTOS_H
00016
00017 #include "utils/dynamic_loader.h"
00018 #ifdef HAVE_DLOPEN
00019 #include <dlfcn.h>
00020 #endif
00021
00022
00023 #ifdef HAVE_DLOPEN
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef RTLD_NOW
00032 #define RTLD_NOW 1
00033 #endif
00034 #ifndef RTLD_GLOBAL
00035 #define RTLD_GLOBAL 0
00036 #endif
00037
00038 #define pg_dlopen(f) dlopen((f), RTLD_NOW | RTLD_GLOBAL)
00039 #define pg_dlsym dlsym
00040 #define pg_dlclose dlclose
00041 #define pg_dlerror dlerror
00042 #endif
00043
00044 #endif