From be070eb8960904214783cf2c45794ef1e0168cfa Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Mon, 9 Mar 2015 20:26:42 +0000 Subject: [PATCH] Fix a typo in comment and explain the reason. --- lib/libthr/thread/thr_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libthr/thread/thr_private.h b/lib/libthr/thread/thr_private.h index 3cfbc6333dc6..ed24c3899123 100644 --- a/lib/libthr/thread/thr_private.h +++ b/lib/libthr/thread/thr_private.h @@ -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))