diff options
Diffstat (limited to 'signal/signal.h')
-rw-r--r-- | signal/signal.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/signal/signal.h b/signal/signal.h index 87dc82a..3f8c6e1 100644 --- a/signal/signal.h +++ b/signal/signal.h @@ -266,6 +266,16 @@ extern int sigwaitinfo (const sigset_t *__restrict __set, This function is a cancellation point and therefore not marked with __THROW. */ +#ifdef __USE_TIME_BITS64 +# if defined(__REDIRECT) +extern int __REDIRECT (sigtimedwait, (const sigset_t *__restrict __set, + siginfo_t *__restrict __info, + const struct timespec *__restrict __timeout), + __sigtimedwait64) __nonnull ((1)); +# else +# define sigtimedwait __sigtimedwait64 +# endif +#endif extern int sigtimedwait (const sigset_t *__restrict __set, siginfo_t *__restrict __info, const struct timespec *__restrict __timeout) |