summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-08-20 13:01:43 -0400
committerJakob Kaivo <jkk@ung.org>2019-08-20 13:01:43 -0400
commite8e4e90e3667efb174fbf2548c22cc6caaebfcf1 (patch)
tree1fb7389da37ec61e934349347b138c8c3e18b4dd
parentc9436d428586d501de341838b591bd59d29aa0d7 (diff)
thrd_timedout, not mtx_timedout
-rw-r--r--src/threads/_enums.c5
1 files changed, 1 insertions, 4 deletions
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
@@ -5,12 +5,9 @@ enum {
};
enum {
- mtx_timedout = 1 << 3
-};
-
-enum {
thrd_success = 0,
thrd_busy = 1,
thrd_error = 2,
thrd_nomem = 3,
+ thrd_timedout = 4,
};