svn commit: r212551 - head/lib/libthr/thread

[ Available lists | Index of svn-src-head | Month of Sep 2010 | Week of 13 Sep 2010 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
David Xu <davidxu@FreeBSD.org>
Date
13 Sep 2010 11:57:46
Subject
svn commit: r212551 - head/lib/libthr/thread
Message-ID
201009131157.o8DBvk84096306@svn.freebsd.org


[ Hide this part ]
Author: davidxu
Date: Mon Sep 13 11:57:46 2010
New Revision: 212551
URL: http://svn.freebsd.org/changeset/base/212551

Log:
Fix copy&paste problem.

Modified:
head/lib/libthr/thread/thr_private.h

Modified: head/lib/libthr/thread/thr_private.h
==============================================================================
--- head/lib/libthr/thread/thr_private.h Mon Sep 13 11:47:35 2010 (r212550)
+++ head/lib/libthr/thread/thr_private.h Mon Sep 13 11:57:46 2010 (r212551)
@@ -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;


Elapsed time: 0.113 seconds