diff options
author | Thomas Munro <tmunro@postgresql.org> | 2022-08-13 23:35:24 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2022-08-14 00:09:47 +1200 |
commit | 36b3d52459aecd4f8bc39a4604e42186c48aa9d2 (patch) | |
tree | 15a7b1211cac9a9fcb193e3eb4984cbe73cb1b8a /src/backend/tcop/postgres.c | |
parent | 37a65d1db14658bc75faa3aea7bd5a064118d135 (diff) | |
download | postgresql-36b3d52459aecd4f8bc39a4604e42186c48aa9d2.tar.gz postgresql-36b3d52459aecd4f8bc39a4604e42186c48aa9d2.zip |
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/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 671edcb3c7a..7bec4e4ff58 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -23,16 +23,10 @@ #include <limits.h> #include <signal.h> #include <unistd.h> +#include <sys/resource.h> #include <sys/select.h> #include <sys/socket.h> -#ifdef HAVE_SYS_RESOURCE_H #include <sys/time.h> -#include <sys/resource.h> -#endif - -#ifdef WIN32 -#include "rusagestub.h" -#endif #include "access/parallel.h" #include "access/printtup.h" @@ -4860,7 +4854,7 @@ ShowUsage(const char *title) * The following rusage fields are not defined by POSIX, but they're * present on all current Unix-like systems so we use them without any * special checks. Some of these could be provided in our Windows - * emulation in src/port/getrusage.c with more work. + * emulation in src/port/win32getrusage.c with more work. */ appendStringInfo(&str, "!\t%ld kB max resident size\n", |