summaryrefslogtreecommitdiff
path: root/src/threads/mtx_destroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/mtx_destroy.c')
-rw-r--r--src/threads/mtx_destroy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/threads/mtx_destroy.c b/src/threads/mtx_destroy.c
index 4d8a54ce..93a8e0f5 100644
--- a/src/threads/mtx_destroy.c
+++ b/src/threads/mtx_destroy.c
@@ -5,6 +5,7 @@
void mtx_destroy(mtx_t *mtx)
{
+ SIGNAL_SAFE(0);
pthread_mutex_destroy(mtx);
}