summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorThomas Munro2022-08-13 11:35:24 +0000
committerThomas Munro2022-08-13 12:09:47 +0000
commit36b3d52459aecd4f8bc39a4604e42186c48aa9d2 (patch)
tree15a7b1211cac9a9fcb193e3eb4984cbe73cb1b8a /src/test
parent37a65d1db14658bc75faa3aea7bd5a064118d135 (diff)
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/test')
-rw-r--r--src/test/regress/pg_regress.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c
index 04ab513b7cb..e015a11c217 100644
--- a/src/test/regress/pg_regress.c
+++ b/src/test/regress/pg_regress.c
@@ -19,16 +19,13 @@
#include "postgres_fe.h"
#include <ctype.h>
+#include <sys/resource.h>
#include <sys/stat.h>
+#include <sys/time.h>
#include <sys/wait.h>
#include <signal.h>
#include <unistd.h>
-#ifdef HAVE_SYS_RESOURCE_H
-#include <sys/time.h>
-#include <sys/resource.h>
-#endif
-
#include "common/logging.h"
#include "common/restricted_token.h"
#include "common/string.h"