aboutsummaryrefslogtreecommitdiff
path: root/src/common/mythread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/mythread.h')
-rw-r--r--src/common/mythread.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/mythread.h b/src/common/mythread.h
index cd9ae89a..ee8a341d 100644
--- a/src/common/mythread.h
+++ b/src/common/mythread.h
@@ -20,6 +20,9 @@
pthread_once(&once_, &func); \
} while (0)
+# define mythread_sigmask(how, set, oset) \
+ pthread_sigmask(how, set, oset)
+
#else
# define mythread_once(func) \
@@ -31,4 +34,7 @@
} \
} while (0)
+# define mythread_sigmask(how, set, oset) \
+ sigprocmask(how, set, oset)
+
#endif