regex: port to Stratus OpenVOS
[gnulib.git] / lib / pthread_sigmask.c
index 06ee7fc..11d549c 100644 (file)
 #include <errno.h>
 #include <stddef.h>
 
+#if PTHREAD_SIGMASK_UNBLOCK_BUG
+# include <unistd.h>
+#endif
+
 int
 pthread_sigmask (int how, const sigset_t *new_mask, sigset_t *old_mask)
 #undef pthread_sigmask
@@ -47,6 +51,16 @@ pthread_sigmask (int how, const sigset_t *new_mask, sigset_t *old_mask)
   if (ret == -1)
     return errno;
 # endif
+# if PTHREAD_SIGMASK_UNBLOCK_BUG
+  if (ret == 0
+      && new_mask != NULL
+      && (how == SIG_UNBLOCK || how == SIG_SETMASK))
+    {
+      /* Give the OS the opportunity to raise signals that were pending before
+         the pthread_sigmask call and have now been unblocked.  */
+      usleep (1);
+    }
+# endif
   return ret;
 #else
   int ret = sigprocmask (how, new_mask, old_mask);