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