annotate lib/pthread_sigmask.c @ 16229:daac1ca4c436

inttypes: Modernize. * lib/inttypes.in.h (strtoimax, strtoumax): Use the C++ safe idioms. * modules/inttypes-incomplete (Depends-on): Add snippet/c++defs. (Makefile.am): Update inttypes.h rule.
author Bruno Haible <bruno@clisp.org>
date Thu, 05 Jan 2012 18:42:08 +0100
parents 8250f2777afc
children 07495c580e2e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15364
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 /* POSIX compatible signal blocking for threads.
16201
8250f2777afc maint: update all copyright year number ranges
Jim Meyering <meyering@redhat.com>
parents: 15432
diff changeset
2 Copyright (C) 2011-2012 Free Software Foundation, Inc.
15364
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 This program is free software: you can redistribute it and/or modify
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 the Free Software Foundation; either version 3 of the License, or
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 (at your option) any later version.
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 GNU General Public License for more details.
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 #include <config.h>
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19 /* Specification. */
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 #include <signal.h>
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22 #include <errno.h>
15382
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
23 #include <stddef.h>
15364
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24
15432
6bebbb324858 pthread_sigmask: ensure usleep is declared
Paul Eggert <eggert@cs.ucla.edu>
parents: 15384
diff changeset
25 #if PTHREAD_SIGMASK_UNBLOCK_BUG
6bebbb324858 pthread_sigmask: ensure usleep is declared
Paul Eggert <eggert@cs.ucla.edu>
parents: 15384
diff changeset
26 # include <unistd.h>
6bebbb324858 pthread_sigmask: ensure usleep is declared
Paul Eggert <eggert@cs.ucla.edu>
parents: 15384
diff changeset
27 #endif
6bebbb324858 pthread_sigmask: ensure usleep is declared
Paul Eggert <eggert@cs.ucla.edu>
parents: 15384
diff changeset
28
15364
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29 int
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30 pthread_sigmask (int how, const sigset_t *new_mask, sigset_t *old_mask)
15382
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
31 #undef pthread_sigmask
15364
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 {
15382
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
33 #if HAVE_PTHREAD_SIGMASK
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
34 int ret = pthread_sigmask (how, new_mask, old_mask);
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
35 # if PTHREAD_SIGMASK_INEFFECTIVE
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
36 if (ret == 0)
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
37 {
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
38 /* Detect whether pthread_sigmask is currently ineffective.
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
39 Don't cache the information: libpthread.so could be dynamically
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
40 loaded after the program started and after pthread_sigmask was
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
41 called for the first time. */
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
42 if (pthread_sigmask (1729, NULL, NULL) == 0)
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
43 {
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
44 /* pthread_sigmask is currently ineffective. The program is not
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
45 linked to -lpthread. So use sigprocmask instead. */
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
46 return (sigprocmask (how, new_mask, old_mask) < 0 ? errno : 0);
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
47 }
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
48 }
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
49 # endif
15383
2fb7d8364951 pthread_sigmask: Work around Cygwin bug.
Bruno Haible <bruno@clisp.org>
parents: 15382
diff changeset
50 # if PTHREAD_SIGMASK_FAILS_WITH_ERRNO
2fb7d8364951 pthread_sigmask: Work around Cygwin bug.
Bruno Haible <bruno@clisp.org>
parents: 15382
diff changeset
51 if (ret == -1)
2fb7d8364951 pthread_sigmask: Work around Cygwin bug.
Bruno Haible <bruno@clisp.org>
parents: 15382
diff changeset
52 return errno;
2fb7d8364951 pthread_sigmask: Work around Cygwin bug.
Bruno Haible <bruno@clisp.org>
parents: 15382
diff changeset
53 # endif
15384
2187b5650eca pthread_sigmask: Work around IRIX bug.
Bruno Haible <bruno@clisp.org>
parents: 15383
diff changeset
54 # if PTHREAD_SIGMASK_UNBLOCK_BUG
2187b5650eca pthread_sigmask: Work around IRIX bug.
Bruno Haible <bruno@clisp.org>
parents: 15383
diff changeset
55 if (ret == 0
2187b5650eca pthread_sigmask: Work around IRIX bug.
Bruno Haible <bruno@clisp.org>
parents: 15383
diff changeset
56 && new_mask != NULL
2187b5650eca pthread_sigmask: Work around IRIX bug.
Bruno Haible <bruno@clisp.org>
parents: 15383
diff changeset
57 && (how == SIG_UNBLOCK || how == SIG_SETMASK))
2187b5650eca pthread_sigmask: Work around IRIX bug.
Bruno Haible <bruno@clisp.org>
parents: 15383
diff changeset
58 {
2187b5650eca pthread_sigmask: Work around IRIX bug.
Bruno Haible <bruno@clisp.org>
parents: 15383
diff changeset
59 /* Give the OS the opportunity to raise signals that were pending before
2187b5650eca pthread_sigmask: Work around IRIX bug.
Bruno Haible <bruno@clisp.org>
parents: 15383
diff changeset
60 the pthread_sigmask call and have now been unblocked. */
2187b5650eca pthread_sigmask: Work around IRIX bug.
Bruno Haible <bruno@clisp.org>
parents: 15383
diff changeset
61 usleep (1);
2187b5650eca pthread_sigmask: Work around IRIX bug.
Bruno Haible <bruno@clisp.org>
parents: 15383
diff changeset
62 }
2187b5650eca pthread_sigmask: Work around IRIX bug.
Bruno Haible <bruno@clisp.org>
parents: 15383
diff changeset
63 # endif
15382
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
64 return ret;
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
65 #else
15364
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
66 int ret = sigprocmask (how, new_mask, old_mask);
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
67 return (ret < 0 ? errno : 0);
15382
16995a7f1514 pthread_sigmask: Work around bug in single-threaded implementation.
Bruno Haible <bruno@clisp.org>
parents: 15364
diff changeset
68 #endif
15364
f81fb597c41a pthread_sigmask: Fix return value.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
69 }