diff options
author | davidxu <davidxu@FreeBSD.org> | 2010-09-13 11:57:46 +0000 |
---|---|---|
committer | davidxu <davidxu@FreeBSD.org> | 2010-09-13 11:57:46 +0000 |
commit | 95869dd2a29cb875ae3096aa5c4d41e5304c3b5b (patch) | |
tree | 56eb43fcf1c668436c1df965152b46492e7cd85b /lib | |
parent | 31372147229998df2321af240189c7ae93556997 (diff) | |
download | FreeBSD-src-95869dd2a29cb875ae3096aa5c4d41e5304c3b5b.zip FreeBSD-src-95869dd2a29cb875ae3096aa5c4d41e5304c3b5b.tar.gz |
Fix copy&paste problem.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libthr/thread/thr_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libthr/thread/thr_private.h b/lib/libthr/thread/thr_private.h index bdf4aa4..aff59a2 100644 --- a/lib/libthr/thread/thr_private.h +++ b/lib/libthr/thread/thr_private.h @@ -415,8 +415,8 @@ struct pthread { #define THR_FLAGS_PRIVATE 0x0001 #define THR_FLAGS_NEED_SUSPEND 0x0002 /* thread should be suspended */ #define THR_FLAGS_SUSPENDED 0x0004 /* thread is suspended */ -#define THR_FLAGS_IN_GCLIST 0x0004 /* thread in gc list */ -#define THR_FLAGS_DETACHED 0x0008 /* thread is detached */ +#define THR_FLAGS_IN_GCLIST 0x0008 /* thread in gc list */ +#define THR_FLAGS_DETACHED 0x0010 /* thread is detached */ /* Thread list flags; only set with thread list lock held. */ int tlflags; |