sigpause.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* Copyright (C) 1991,92,94-98,2000,2002,2003,2004
  2. Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <signal.h>
  17. #define __need_NULL
  18. #include <stddef.h>
  19. #include <cancel.h>
  20. #include "sigset-cvt-mask.h"
  21. /* Set the mask of blocked signals to MASK,
  22. wait for a signal to arrive, and then restore the mask. */
  23. static int __sigpause (int sig_or_mask, int is_sig)
  24. {
  25. sigset_t set;
  26. if (is_sig)
  27. {
  28. /* The modern X/Open implementation is requested. */
  29. sigprocmask (SIG_BLOCK, NULL, &set);
  30. /* Bound-check sig_or_mask, remove it from the set. */
  31. if (sigdelset (&set, sig_or_mask) < 0)
  32. return -1;
  33. }
  34. else
  35. sigset_set_old_mask (&set, sig_or_mask);
  36. /* Note the sigpause() is a cancellation point. But since we call
  37. sigsuspend() which itself is a cancellation point we do not have
  38. to do anything here. */
  39. /* uClibc note: not true on uClibc, we call the non-cancellable version */
  40. return __NC(sigsuspend)(&set);
  41. }
  42. int __bsd_sigpause(int mask);
  43. int __bsd_sigpause(int mask)
  44. {
  45. return __sigpause(mask, 0);
  46. }
  47. /* We have to provide a default version of this function since the
  48. standards demand it. The version which is a bit more reasonable is
  49. the BSD version. So make this the default. */
  50. static int __NC(sigpause)(int sig)
  51. {
  52. return __sigpause(sig, 1);
  53. }
  54. CANCELLABLE_SYSCALL(int, sigpause, (int sig), (sig))