about summary refs log tree commit diff
path: root/include/signal.h
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2020-07-06 17:14:42 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2020-09-28 16:21:51 -0300
commit94a83d86676d0fbea78cdaa8e5bab1db155c7504 (patch)
tree8e70c12d42271fafcfd270f9f8d807f1f154f0b7 /include/signal.h
parent2433d39b69743f100f972e7886f91a2e21795ef0 (diff)
downloadglibc-94a83d86676d0fbea78cdaa8e5bab1db155c7504.tar.gz
glibc-94a83d86676d0fbea78cdaa8e5bab1db155c7504.tar.xz
glibc-94a83d86676d0fbea78cdaa8e5bab1db155c7504.zip
linux: Add time64 sigtimedwait support
The syscall __NR_sigtimedwait_time64 (for 32-bit) or __NR_sigtimedwait
(for 64-bit) is used as default.  The 32-bit fallback is used iff
__ASSUME_TIME64_SYSCALLS is not defined, which assumes the kernel ABI
provides either __NR_rt_sigtimedwait (32-bit time_t).

Checked on x86_64-linux-gnu and i686-linux-gnu.

Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Diffstat (limited to 'include/signal.h')
-rw-r--r--include/signal.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/signal.h b/include/signal.h
index b4ee02d153..544d701bce 100644
--- a/include/signal.h
+++ b/include/signal.h
@@ -38,6 +38,14 @@ extern int __sigwait (const sigset_t *__set, int *__sig);
 libc_hidden_proto (__sigwait)
 extern int __sigwaitinfo (const sigset_t *__set, siginfo_t *__info);
 libc_hidden_proto (__sigwaitinfo)
+#if __TIMESIZE == 64
+# define __sigtimedwait64 __sigtimedwait
+#else
+# include <struct___timespec64.h>
+extern int __sigtimedwait64 (const sigset_t *__set, siginfo_t *__info,
+			     const struct __timespec64 *__timeout);
+libc_hidden_proto (__sigtimedwait64)
+#endif
 extern int __sigtimedwait (const sigset_t *__set, siginfo_t *__info,
 			   const struct timespec *__timeout);
 libc_hidden_proto (__sigtimedwait)