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/mtx_init.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/threads/mtx_init.c') diff --git a/src/threads/mtx_init.c b/src/threads/mtx_init.c index dbe58812..56e5196a 100644 --- a/src/threads/mtx_init.c +++ b/src/threads/mtx_init.c @@ -6,6 +6,7 @@ int mtx_init(mtx_t *mtx, int type) { + SIGNAL_SAFE(0); pthread_mutexattr_t attr; pthread_mutexattr_init(&attr); if (type & mtx_recursive) { -- cgit v1.2.1