summaryrefslogtreecommitdiff
path: root/src/threads/tss_set.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/tss_set.c')
-rw-r--r--src/threads/tss_set.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/threads/tss_set.c b/src/threads/tss_set.c
index 17e8187a..0e0a7b3c 100644
--- a/src/threads/tss_set.c
+++ b/src/threads/tss_set.c
@@ -5,6 +5,7 @@
int tss_set(tss_t key, void *val)
{
+ SIGNAL_SAFE(0);
return pthread_setspecific(key, val) == 0 ? thrd_success : thrd_error;
}