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/cnd_destroy.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/threads/cnd_destroy.c') diff --git a/src/threads/cnd_destroy.c b/src/threads/cnd_destroy.c index 9153cab4..07cee092 100644 --- a/src/threads/cnd_destroy.c +++ b/src/threads/cnd_destroy.c @@ -5,6 +5,7 @@ void cnd_destroy(cnd_t *cond) { + SIGNAL_SAFE(0); pthread_cond_destroy(cond); } -- cgit v1.2.1