sigpause.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. #define __UCLIBC_HIDE_DEPRECATED__
  17. /* psm: need the BSD version of sigpause here */
  18. #include <errno.h>
  19. #define __FAVOR_BSD
  20. #include <signal.h>
  21. #include <stddef.h> /* For NULL. */
  22. #include <string.h>
  23. /* libc_hidden_proto(sigprocmask) */
  24. /* libc_hidden_proto(sigdelset) */
  25. /* libc_hidden_proto(sigsuspend) */
  26. #include "sigset-cvt-mask.h"
  27. /* Set the mask of blocked signals to MASK,
  28. wait for a signal to arrive, and then restore the mask. */
  29. /* libc_hidden_proto(__sigpause) */
  30. int __sigpause (int sig_or_mask, int is_sig)
  31. {
  32. sigset_t set;
  33. if (is_sig)
  34. {
  35. /* The modern X/Open implementation is requested. */
  36. sigprocmask (SIG_BLOCK, NULL, &set);
  37. /* Bound-check sig_or_mask, remove it from the set. */
  38. if (sigdelset (&set, sig_or_mask) < 0)
  39. return -1;
  40. }
  41. else
  42. sigset_set_old_mask (&set, sig_or_mask);
  43. return sigsuspend (&set);
  44. }
  45. libc_hidden_def(__sigpause)
  46. #undef sigpause
  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. /* libc_hidden_proto(sigpause) */
  51. int sigpause (int mask)
  52. {
  53. return __sigpause (mask, 0);
  54. }
  55. libc_hidden_def(sigpause)