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

David Xu davidxu at FreeBSD.org
Mon Sep 13 11:57:46 UTC 2010


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;


More information about the svn-src-all mailing list