From 82e8594087c93c84f27ad4508520db82289bb8fe Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 30 Jan 2024 15:33:21 -0500 Subject: update standards and safety checks --- src/threads/thrd_equal.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/threads/thrd_equal.c') 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); } -- cgit v1.2.1