06ee7fc42042bf09d061db6c2caa76e593ad6225
[gnulib.git] / lib / pthread_sigmask.c
1 /* POSIX compatible signal blocking for threads.
2    Copyright (C) 2011 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 #include <config.h>
18
19 /* Specification.  */
20 #include <signal.h>
21
22 #include <errno.h>
23 #include <stddef.h>
24
25 int
26 pthread_sigmask (int how, const sigset_t *new_mask, sigset_t *old_mask)
27 #undef pthread_sigmask
28 {
29 #if HAVE_PTHREAD_SIGMASK
30   int ret = pthread_sigmask (how, new_mask, old_mask);
31 # if PTHREAD_SIGMASK_INEFFECTIVE
32   if (ret == 0)
33     {
34       /* Detect whether pthread_sigmask is currently ineffective.
35          Don't cache the information: libpthread.so could be dynamically
36          loaded after the program started and after pthread_sigmask was
37          called for the first time.  */
38       if (pthread_sigmask (1729, NULL, NULL) == 0)
39         {
40           /* pthread_sigmask is currently ineffective.  The program is not
41              linked to -lpthread.  So use sigprocmask instead.  */
42           return (sigprocmask (how, new_mask, old_mask) < 0 ? errno : 0);
43         }
44     }
45 # endif
46 # if PTHREAD_SIGMASK_FAILS_WITH_ERRNO
47   if (ret == -1)
48     return errno;
49 # endif
50   return ret;
51 #else
52   int ret = sigprocmask (how, new_mask, old_mask);
53   return (ret < 0 ? errno : 0);
54 #endif
55 }