summaryrefslogtreecommitdiff
path: root/src/threads/thrd_equal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/thrd_equal.c')
-rw-r--r--src/threads/thrd_equal.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/threads/thrd_equal.c b/src/threads/thrd_equal.c
index 0bf5fc0b..cf2a64b1 100644
--- a/src/threads/thrd_equal.c
+++ b/src/threads/thrd_equal.c
@@ -5,6 +5,7 @@
int thrd_equal(thrd_t thr0, thrd_t thr1)
{
+ SIGNAL_SAFE(0);
return pthread_equal(thr0, thr1);
}