summaryrefslogtreecommitdiff
path: root/src/port
diff options
context:
space:
mode:
authorThomas Munro <tmunro@postgresql.org>2022-08-13 23:35:24 +1200
committerThomas Munro <tmunro@postgresql.org>2022-08-14 00:09:47 +1200
commit36b3d52459aecd4f8bc39a4604e42186c48aa9d2 (patch)
tree15a7b1211cac9a9fcb193e3eb4984cbe73cb1b8a /src/port
parent37a65d1db14658bc75faa3aea7bd5a064118d135 (diff)
downloadpostgresql-36b3d52459aecd4f8bc39a4604e42186c48aa9d2.tar.gz
Remove configure probe for sys/resource.h and refactor.
<sys/resource.h> is in SUSv2 and is on all targeted Unix systems. We have a replacement for getrusage() on Windows, so let's just move its declarations into src/include/port/win32/sys/resource.h so that we can use a standard-looking #include. Also remove an obsolete reference to CLK_TCK. Also rename src/port/getrusage.c to win32getrusage.c, following the convention for Windows-only fallback code. Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://postgr.es/m/CA%2BhUKG%2BL_3brvh%3D8e0BW_VfX9h7MtwgN%3DnFHP5o7X2oZucY9dg%40mail.gmail.com
Diffstat (limited to 'src/port')
-rw-r--r--src/port/win32getrusage.c (renamed from src/port/getrusage.c)11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/port/getrusage.c b/src/port/win32getrusage.c
index 2ba59ade2c..8f3556f63b 100644
--- a/src/port/getrusage.c
+++ b/src/port/win32getrusage.c
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * getrusage.c
+ * win32getrusage.c
* get information about resource utilisation
*
* Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
@@ -8,19 +8,14 @@
*
*
* IDENTIFICATION
- * src/port/getrusage.c
+ * src/port/win32getrusage.c
*
*-------------------------------------------------------------------------
*/
#include "c.h"
-#include "rusagestub.h"
-
-/*
- * This code works on Windows, which is the only supported platform without a
- * native version of getrusage().
- */
+#include <sys/resource.h>
int
getrusage(int who, struct rusage *rusage)