diff options
author | Thomas Munro <tmunro@postgresql.org> | 2022-07-24 09:32:34 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2022-07-24 09:32:34 +1200 |
commit | fb12becdfb89e35f3f56768cefe1a837f0afafaf (patch) | |
tree | eea26473ddbbd0284db10c287ac3a0a7c6167a22 /src/include | |
parent | 86e5eb4f58a276870fbd29e3711b36e4a4280979 (diff) | |
download | postgresql-fb12becdfb89e35f3f56768cefe1a837f0afafaf.tar.gz postgresql-fb12becdfb89e35f3f56768cefe1a837f0afafaf.zip |
Remove dead handling for pre-POSIX sigwait().
sigwait() is in SUSv2 and all targeted Unix systems have it. An earlier
pre-standard function prototype existed on some older systems, but we
no longer need a workaround for that.
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Reviewed-by: Greg Stark <stark@mit.edu>
Reviewed-by: Robert Haas <robertmhaas@gmail.com>
Discussion: https://postgr.es/m/CA+hUKGJ3LHeP9w5Fgzdr4G8AnEtJ=z=p6hGDEm4qYGEUX5B6fQ@mail.gmail.com
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/pg_config.h.in | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 9061f301b05..bf42c541dc4 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -149,10 +149,6 @@ don't. */ #undef HAVE_DECL_RTLD_NOW -/* Define to 1 if you have the declaration of `sigwait', and to 0 if you - don't. */ -#undef HAVE_DECL_SIGWAIT - /* Define to 1 if you have the declaration of `strlcat', and to 0 if you don't. */ #undef HAVE_DECL_STRLCAT @@ -406,9 +402,6 @@ /* Define to 1 if you have the <poll.h> header file. */ #undef HAVE_POLL_H -/* Define to 1 if you have a POSIX-conforming sigwait declaration. */ -#undef HAVE_POSIX_DECL_SIGWAIT - /* Define to 1 if you have the `posix_fadvise' function. */ #undef HAVE_POSIX_FADVISE |