summaryrefslogtreecommitdiff
path: root/src/threads/tss_get.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/tss_get.c')
-rw-r--r--src/threads/tss_get.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/threads/tss_get.c b/src/threads/tss_get.c
index 56e1c7ba..03c96419 100644
--- a/src/threads/tss_get.c
+++ b/src/threads/tss_get.c
@@ -5,6 +5,7 @@
void *tss_get(tss_t key)
{
+ SIGNAL_SAFE(0);
return pthread_getspecific(key);
}