summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2021-07-05 09:53:33 -0400
committerSimon Marchi <simon.marchi@polymtl.ca>2021-07-05 09:54:35 -0400
commitf4931779e4432bde7f04fd1a60a7f055f86e6ccb (patch)
tree621a165f909aa5b5fa6576f05266ec4b0448be9d /gdb
parent4dcdbbd1bc1d14f2caff3bb4f8fe1f0e5dabcb85 (diff)
downloadbinutils-gdb-f4931779e4432bde7f04fd1a60a7f055f86e6ccb.tar.gz
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 'gdb')
-rw-r--r--gdb/config.in3
-rwxr-xr-xgdb/configure2
2 files changed, 4 insertions, 1 deletions
diff --git a/gdb/config.in b/gdb/config.in
index 9342604ac4c..2c30504905b 100644
--- a/gdb/config.in
+++ b/gdb/config.in
@@ -414,6 +414,9 @@
/* Define to 1 if you have the `sigsetmask' function. */
#undef HAVE_SIGSETMASK
+/* 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/gdb/configure b/gdb/configure
index a5c6fab118c..de4528c43ad 100755
--- a/gdb/configure
+++ b/gdb/configure
@@ -13857,7 +13857,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"