svn commit: r279820 - head/lib/libthr/thread
Jung-uk Kim
jkim at FreeBSD.org
Mon Mar 9 20:26:44 UTC 2015
Author: jkim
Date: Mon Mar 9 20:26:42 2015
New Revision: 279820
URL: https://svnweb.freebsd.org/changeset/base/279820
Log:
Fix a typo in comment and explain the reason.
Modified:
head/lib/libthr/thread/thr_private.h
Modified: head/lib/libthr/thread/thr_private.h
==============================================================================
--- head/lib/libthr/thread/thr_private.h Mon Mar 9 20:11:16 2015 (r279819)
+++ head/lib/libthr/thread/thr_private.h Mon Mar 9 20:26:42 2015 (r279820)
@@ -337,7 +337,7 @@ struct pthread_key {
/*
* lwpid_t is 32bit but kernel thr API exports tid as long type
- * in very earily date.
+ * to preserve the ABI for M:N model in very early date (r131431).
*/
#define TID(thread) ((uint32_t) ((thread)->tid))
More information about the svn-src-all
mailing list