diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-07-05 09:53:33 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-07-05 09:54:35 -0400 |
commit | f4931779e4432bde7f04fd1a60a7f055f86e6ccb (patch) | |
tree | 621a165f909aa5b5fa6576f05266ec4b0448be9d /gdbsupport | |
parent | 4dcdbbd1bc1d14f2caff3bb4f8fe1f0e5dabcb85 (diff) | |
download | gdb-f4931779e4432bde7f04fd1a60a7f055f86e6ccb.zip gdb-f4931779e4432bde7f04fd1a60a7f055f86e6ccb.tar.gz gdb-f4931779e4432bde7f04fd1a60a7f055f86e6ccb.tar.bz2 |
gdbsupport/common.m4: check for sigtimedwait
The next patch will make the use of sigtimedwait conditional to whether
the platform provides it. Start by adding a configure check for it.
gdbsupport/ChangeLog:
* common.m4 (GDB_AC_COMMON): Check for sigtimedwait.
* config.in, configure: Re-generate.
gdb/ChangeLog:
* config.in, configure: Re-generate.
gdbserver/ChangeLog:
* config.in, configure: Re-generate.
Change-Id: Ic7613fe14521b966b4d991bbcd0933ab14629c05
Diffstat (limited to 'gdbsupport')
-rw-r--r-- | gdbsupport/common.m4 | 2 | ||||
-rw-r--r-- | gdbsupport/config.in | 3 | ||||
-rwxr-xr-x | gdbsupport/configure | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/gdbsupport/common.m4 b/gdbsupport/common.m4 index 2e709db..901c454 100644 --- a/gdbsupport/common.m4 +++ b/gdbsupport/common.m4 @@ -53,7 +53,7 @@ AC_DEFUN([GDB_AC_COMMON], [ AC_FUNC_FORK AC_CHECK_FUNCS([fdwalk getrlimit pipe pipe2 poll socketpair sigaction \ ptrace64 sbrk setns sigaltstack sigprocmask \ - setpgid setpgrp getrusage getauxval]) + setpgid setpgrp getrusage getauxval sigtimedwait]) AC_CHECK_DECLS([strstr]) diff --git a/gdbsupport/config.in b/gdbsupport/config.in index c44a2a1..f46e261 100644 --- a/gdbsupport/config.in +++ b/gdbsupport/config.in @@ -210,6 +210,9 @@ /* Define if sigsetjmp is available. */ #undef HAVE_SIGSETJMP +/* Define to 1 if you have the `sigtimedwait' function. */ +#undef HAVE_SIGTIMEDWAIT + /* Define to 1 if you have the `socketpair' function. */ #undef HAVE_SOCKETPAIR diff --git a/gdbsupport/configure b/gdbsupport/configure index 60643c8..a9dd02c 100755 --- a/gdbsupport/configure +++ b/gdbsupport/configure @@ -8131,7 +8131,7 @@ fi for ac_func in fdwalk getrlimit pipe pipe2 poll socketpair sigaction \ ptrace64 sbrk setns sigaltstack sigprocmask \ - setpgid setpgrp getrusage getauxval + setpgid setpgrp getrusage getauxval sigtimedwait do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" |