12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #include <config.h>
- #include <signal.h>
- #include <errno.h>
- #include <stddef.h>
- #if PTHREAD_SIGMASK_UNBLOCK_BUG
- # include <unistd.h>
- #endif
- int
- pthread_sigmask (int how, const sigset_t *new_mask, sigset_t *old_mask)
- #undef pthread_sigmask
- {
- #if HAVE_PTHREAD_SIGMASK
- int ret = pthread_sigmask (how, new_mask, old_mask);
- # if PTHREAD_SIGMASK_INEFFECTIVE
- if (ret == 0)
- {
-
- if (pthread_sigmask (1729, NULL, NULL) == 0)
- {
-
- return (sigprocmask (how, new_mask, old_mask) < 0 ? errno : 0);
- }
- }
- # endif
- # if PTHREAD_SIGMASK_FAILS_WITH_ERRNO
- if (ret == -1)
- return errno;
- # endif
- # if PTHREAD_SIGMASK_UNBLOCK_BUG
- if (ret == 0
- && new_mask != NULL
- && (how == SIG_UNBLOCK || how == SIG_SETMASK))
- {
-
- usleep (1);
- }
- # endif
- return ret;
- #else
- int ret = sigprocmask (how, new_mask, old_mask);
- return (ret < 0 ? errno : 0);
- #endif
- }
|