Hackfut Security File Manager
Current Path:
/opt/td-agent/embedded/include/postgresql/server
opt
/
td-agent
/
embedded
/
include
/
postgresql
/
server
/
📁
..
📁
access
📁
bootstrap
📄
c.h
(33.2 KB)
📁
catalog
📁
commands
📁
common
📁
datatype
📄
dynloader.h
(1.09 KB)
📁
executor
📁
fe_utils
📄
fmgr.h
(30.51 KB)
📁
foreign
📄
funcapi.h
(11.38 KB)
📄
getaddrinfo.h
(3.89 KB)
📄
getopt_long.h
(688 B)
📁
lib
📁
libpq
📁
mb
📄
miscadmin.h
(15.87 KB)
📁
nodes
📁
optimizer
📁
parser
📄
pg_config.h
(28.5 KB)
📄
pg_config_ext.h
(323 B)
📄
pg_config_manual.h
(11.36 KB)
📄
pg_config_os.h
(1.03 KB)
📄
pg_getopt.h
(1.06 KB)
📄
pg_trace.h
(316 B)
📄
pgstat.h
(32.49 KB)
📄
pgtar.h
(752 B)
📄
pgtime.h
(2.27 KB)
📄
plpgsql.h
(28.06 KB)
📁
port
📄
port.h
(13.64 KB)
📁
portability
📄
postgres.h
(22.61 KB)
📄
postgres_ext.h
(2.1 KB)
📄
postgres_fe.h
(763 B)
📁
postmaster
📁
regex
📁
replication
📁
rewrite
📄
rusagestub.h
(843 B)
📁
snowball
📁
storage
📁
tcop
📁
tsearch
📁
utils
📄
windowapi.h
(2.32 KB)
Editing: dynloader.h
/*------------------------------------------------------------------------- * * linux.h * Port-specific prototypes for Linux * * * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/backend/port/dynloader/linux.h * *------------------------------------------------------------------------- */ #ifndef PORT_PROTOS_H #define PORT_PROTOS_H #include "utils/dynamic_loader.h" /* pgrminclude ignore */ #ifdef HAVE_DLOPEN #include <dlfcn.h> #endif #ifdef HAVE_DLOPEN /* * In some older systems, the RTLD_NOW flag isn't defined and the mode * argument to dlopen must always be 1. The RTLD_GLOBAL flag is wanted * if available, but it doesn't exist everywhere. * If it doesn't exist, set it to 0 so it has no effect. */ #ifndef RTLD_NOW #define RTLD_NOW 1 #endif #ifndef RTLD_GLOBAL #define RTLD_GLOBAL 0 #endif #define pg_dlopen(f) dlopen((f), RTLD_NOW | RTLD_GLOBAL) #define pg_dlsym dlsym #define pg_dlclose dlclose #define pg_dlerror dlerror #endif /* HAVE_DLOPEN */ #endif /* PORT_PROTOS_H */
Upload File
Create Folder