pthread_sigmask: Work around bug in single-threaded implementation.
[gnulib.git] / modules / pthread_sigmask
1 Description:
2 POSIX compatible signal blocking for threads.
3
4 Files:
5 lib/pthread_sigmask.c
6 m4/pthread_sigmask.m4
7
8 Depends-on:
9 signal
10 sigprocmask     [test $HAVE_PTHREAD_SIGMASK = 0 || test $REPLACE_PTHREAD_SIGMASK = 1]
11
12 configure.ac:
13 gl_FUNC_PTHREAD_SIGMASK
14 if test $HAVE_PTHREAD_SIGMASK = 0 || test $REPLACE_PTHREAD_SIGMASK = 1; then
15   AC_LIBOBJ([pthread_sigmask])
16   gl_PREREQ_PTHREAD_SIGMASK
17 fi
18 gl_SIGNAL_MODULE_INDICATOR([pthread_sigmask])
19
20 Makefile.am:
21
22 Include:
23 <signal.h>
24
25 Link:
26 $(LIB_PTHREAD_SIGMASK)
27
28 License:
29 LGPLv2+
30
31 Maintainer:
32 Paul Eggert, Bruno Haible, Jim Meyering