1 /*-------------------------------------------------------------------------
4 * header file for resource usage measurement support routines
7 * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/utils/pg_rusage.h
12 *-------------------------------------------------------------------------
17 #include <sys/resource.h>
21 /* State structure for pg_rusage_init/pg_rusage_show */
22 typedef struct PGRUsage
29 extern void pg_rusage_init(PGRUsage
*ru0
);
30 extern const char *pg_rusage_show(const PGRUsage
*ru0
);
32 #endif /* PG_RUSAGE_H */