One Hat Cyber Team
Your IP :
172.69.17.123
Server IP :
188.114.96.3
Server :
Linux thuru 6.5.11-4-pve #1 SMP PREEMPT_DYNAMIC PMX 6.5.11-4 (2023-11-20T10:19Z) x86_64
Server Software :
Apache/2.4.51 (Unix) OpenSSL/1.0.2k-fips
PHP Version :
7.3.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
include
/
pgsql
/
server
/
utils
/
View File Name :
pg_rusage.h
/*------------------------------------------------------------------------- * * pg_rusage.h * header file for resource usage measurement support routines * * * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/utils/pg_rusage.h * *------------------------------------------------------------------------- */ #ifndef PG_RUSAGE_H #define PG_RUSAGE_H #include <sys/time.h> #ifdef HAVE_SYS_RESOURCE_H #include <sys/resource.h> #else #include "rusagestub.h" #endif /* State structure for pg_rusage_init/pg_rusage_show */ typedef struct PGRUsage { struct timeval tv; struct rusage ru; } PGRUsage; extern void pg_rusage_init(PGRUsage *ru0); extern const char *pg_rusage_show(const PGRUsage *ru0); #endif /* PG_RUSAGE_H */