diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-05-12 23:47:00 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:44 +0200 |
commit | 93002a29bca1eb9d5f83da7569e30a50b8696238 (patch) | |
tree | ab04dc73658e9fd152abda03951f6ba8d776777e /libc/sysdeps/linux/common/sigprocmask.c | |
parent | fe1423c4a8121454f689a6ecb30a4d1bf418607c (diff) |
include pthreadP.h for SIGCANCEL
based on a patch from Kevin Cernekee <cernekee@gmail.com>
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/sigprocmask.c')
-rw-r--r-- | libc/sysdeps/linux/common/sigprocmask.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/sigprocmask.c b/libc/sysdeps/linux/common/sigprocmask.c index 623003352..6eaf5fb3a 100644 --- a/libc/sysdeps/linux/common/sigprocmask.c +++ b/libc/sysdeps/linux/common/sigprocmask.c @@ -11,6 +11,9 @@ #if defined __USE_POSIX #include <signal.h> +#ifdef __UCLIBC_HAS_THREADS_NATIVE__ +# include <pthreadP.h> /* SIGCANCEL */ +#endif #undef sigprocmask |