summaryrefslogtreecommitdiff
path: root/src/threads/thrd_yield.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/thrd_yield.c')
-rw-r--r--src/threads/thrd_yield.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/threads/thrd_yield.c b/src/threads/thrd_yield.c
index 0d2595ce..b6bc0f93 100644
--- a/src/threads/thrd_yield.c
+++ b/src/threads/thrd_yield.c
@@ -5,6 +5,7 @@
void thrd_yield(void)
{
+ SIGNAL_SAFE(0);
sched_yield();
}