diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-08-20 13:01:43 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-08-20 13:01:43 -0400 |
| commit | e8e4e90e3667efb174fbf2548c22cc6caaebfcf1 (patch) | |
| tree | 1fb7389da37ec61e934349347b138c8c3e18b4dd | |
| parent | c9436d428586d501de341838b591bd59d29aa0d7 (diff) | |
thrd_timedout, not mtx_timedout
| -rw-r--r-- | src/threads/_enums.c | 5 |
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, }; |
