Date: Mon, 9 Mar 2015 20:26:43 +0000 (UTC) From: Jung-uk Kim <jkim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r279820 - head/lib/libthr/thread Message-ID: <201503092026.t29KQhBh020706@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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))
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503092026.t29KQhBh020706>