Hackfut Security File Manager
Current Path:
/opt/alt/postgresql11/usr/include/pgsql/server
opt
/
alt
/
postgresql11
/
usr
/
include
/
pgsql
/
server
/
📁
..
📁
access
📁
bootstrap
📄
c.h
(24.21 KB)
📁
catalog
📁
commands
📁
datatype
📄
dynloader.h
(1.09 KB)
📁
executor
📄
fmgr.h
(29.46 KB)
📁
foreign
📄
funcapi.h
(10.24 KB)
📄
getaddrinfo.h
(3.89 KB)
📄
getopt_long.h
(827 B)
📁
lib
📁
libpq
📁
mb
📄
miscadmin.h
(15.46 KB)
📁
nodes
📁
optimizer
📁
parser
📄
pg_config.h
(1.01 KB)
📄
pg_config_manual.h
(9.36 KB)
📄
pg_config_os.h
(1.03 KB)
📄
pg_config_x86_64.h
(26.42 KB)
📄
pg_trace.h
(316 B)
📄
pgstat.h
(23.94 KB)
📄
pgtar.h
(682 B)
📄
pgtime.h
(2.25 KB)
📄
plpgsql.h
(25.74 KB)
📁
port
📄
port.h
(13.95 KB)
📁
portability
📄
postgres.h
(20.07 KB)
📄
postgres_ext.h
(1.74 KB)
📄
postgres_fe.h
(730 B)
📁
postmaster
📁
regex
📁
replication
📁
rewrite
📄
rusagestub.h
(843 B)
📁
snowball
📁
storage
📁
tcop
📁
tsearch
📁
utils
📄
windowapi.h
(2.32 KB)
Editing: rusagestub.h
/*------------------------------------------------------------------------- * * rusagestub.h * Stubs for getrusage(3). * * * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/rusagestub.h * *------------------------------------------------------------------------- */ #ifndef RUSAGESTUB_H #define RUSAGESTUB_H #include <sys/time.h> /* for struct timeval */ #ifndef WIN32 #include <sys/times.h> /* for struct tms */ #endif #include <limits.h> /* for CLK_TCK */ #define RUSAGE_SELF 0 #define RUSAGE_CHILDREN (-1) struct rusage { struct timeval ru_utime; /* user time used */ struct timeval ru_stime; /* system time used */ }; extern int getrusage(int who, struct rusage * rusage); #endif /* RUSAGESTUB_H */
Upload File
Create Folder