mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
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
This commit is contained in:
parent
4dcdbbd1bc
commit
f4931779e4
@ -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
|
||||
|
||||
|
2
gdb/configure
vendored
2
gdb/configure
vendored
@ -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"
|
||||
|
@ -266,6 +266,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
|
||||
|
||||
|
2
gdbserver/configure
vendored
2
gdbserver/configure
vendored
@ -7118,7 +7118,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"
|
||||
|
@ -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])
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
2
gdbsupport/configure
vendored
2
gdbsupport/configure
vendored
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user