diff mbox

[COMMITTED] NPTL: Fix generic pthread_sigmask.

Message ID 20150108222908.06C0F2C3BC0@topped-with-meat.com
State New
Headers show

Commit Message

Roland McGrath Jan. 8, 2015, 10:29 p.m. UTC
Fixes the build of libpthread.so on non-Linux.  
(Also some incidental sanity-checking with the #error.)
No effect on existing configurations.

Thanks,
Roland

	* nptl/pthread_sigmask.c [SIGCANCEL || SIGTIMER || SIGSETXID]: #error.
	(pthread_sigmask): Call sigprocmask, not __sigprocmask.
diff mbox

Patch

--- a/nptl/pthread_sigmask.c
+++ b/nptl/pthread_sigmask.c
@@ -18,14 +18,18 @@ 
 
 #include <errno.h>
 #include <signal.h>
+#include <pthreadP.h>
 
+#if defined SIGCANCEL || defined SIGTIMER || defined SIGSETXID
+# error "This implementation assumes no internal-only signal numbers."
+#endif
 
 int
 pthread_sigmask (int how, const sigset_t *newmask, sigset_t *oldmask)
 {
   /* Here we assume that sigprocmask actually does everything right.
      The only difference is the return value protocol.  */
-  int result = __sigprocmask (how, newmask, oldmask);
+  int result = sigprocmask (how, newmask, oldmask);
   if (result < 0)
     result = errno;
   return result;