sigsuspend.c 919 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * sigsuspend() 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 "syscalls.h"
  10. #include <signal.h>
  11. extern __typeof(sigsuspend) __libc_sigsuspend;
  12. #ifdef __NR_rt_sigsuspend
  13. # define __NR___rt_sigsuspend __NR_rt_sigsuspend
  14. static inline _syscall2(int, __rt_sigsuspend, const sigset_t *, mask, size_t, size);
  15. int __libc_sigsuspend(const sigset_t * mask)
  16. {
  17. return __rt_sigsuspend(mask, _NSIG / 8);
  18. }
  19. #else
  20. # define __NR___syscall_sigsuspend __NR_sigsuspend
  21. static inline _syscall3(int, __syscall_sigsuspend, int, a, unsigned long int, b,
  22. unsigned long int, c);
  23. int __libc_sigsuspend(const sigset_t * set)
  24. {
  25. return __syscall_sigsuspend(0, 0, set->__val[0]);
  26. }
  27. #endif
  28. libc_hidden_proto(sigsuspend)
  29. weak_alias(__libc_sigsuspend,sigsuspend)
  30. libc_hidden_weak(sigsuspend)