From e8e4e90e3667efb174fbf2548c22cc6caaebfcf1 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 20 Aug 2019 13:01:43 -0400 Subject: thrd_timedout, not mtx_timedout --- src/threads/_enums.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src') diff --git a/src/threads/_enums.c b/src/threads/_enums.c index 6e099b0f..61451287 100644 --- a/src/threads/_enums.c +++ b/src/threads/_enums.c @@ -4,13 +4,10 @@ enum { mtx_timed = 1 << 2, }; -enum { - mtx_timedout = 1 << 3 -}; - enum { thrd_success = 0, thrd_busy = 1, thrd_error = 2, thrd_nomem = 3, + thrd_timedout = 4, }; -- cgit v1.2.1