From cbadc1d7ad2d648c65c6683a0d5c92e2ac1d50c9 Mon Sep 17 00:00:00 2001 From: David Xu Date: Mon, 13 Sep 2010 11:57:46 +0000 Subject: [PATCH] Fix copy&paste problem. --- lib/libthr/thread/thr_private.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libthr/thread/thr_private.h b/lib/libthr/thread/thr_private.h index bdf4aa4673f2..aff59a2224e8 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;