__rt_sigtimedwait.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * __rt_sigtimedwait() for uClibc
  4. *
  5. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  6. *
  7. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  8. */
  9. #include <sys/syscall.h>
  10. #include <signal.h>
  11. #define __need_NULL
  12. #include <stddef.h>
  13. /* libc_hidden_proto(sigwaitinfo) */
  14. /* libc_hidden_proto(sigtimedwait) */
  15. #ifdef __NR_rt_sigtimedwait
  16. #define __NR___rt_sigtimedwait __NR_rt_sigtimedwait
  17. static _syscall4(int, __rt_sigtimedwait, const sigset_t *, set, siginfo_t *, info,
  18. const struct timespec *, timeout, size_t, setsize)
  19. int sigwaitinfo(const sigset_t * set, siginfo_t * info)
  20. {
  21. return __rt_sigtimedwait(set, info, NULL, _NSIG / 8);
  22. }
  23. int sigtimedwait(const sigset_t * set, siginfo_t * info,
  24. const struct timespec *timeout)
  25. {
  26. return __rt_sigtimedwait(set, info, timeout, _NSIG / 8);
  27. }
  28. #else
  29. int sigwaitinfo(const sigset_t * set, siginfo_t * info)
  30. {
  31. if (set == NULL)
  32. __set_errno(EINVAL);
  33. else
  34. __set_errno(ENOSYS);
  35. return -1;
  36. }
  37. int sigtimedwait(const sigset_t * set, siginfo_t * info,
  38. const struct timespec *timeout)
  39. {
  40. if (set == NULL)
  41. __set_errno(EINVAL);
  42. else
  43. __set_errno(ENOSYS);
  44. return -1;
  45. }
  46. #endif
  47. libc_hidden_def(sigwaitinfo)
  48. libc_hidden_def(sigtimedwait)