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

Alexander Kabaev kan at FreeBSD.org
Sun Jun 19 13:35:36 UTC 2011


Author: kan
Date: Sun Jun 19 13:35:36 2011
New Revision: 223294
URL: http://svn.freebsd.org/changeset/base/223294

Log:
  Do not set thread name to less than informative 'initial thread'.

Modified:
  head/lib/libthr/thread/thr_init.c

Modified: head/lib/libthr/thread/thr_init.c
==============================================================================
--- head/lib/libthr/thread/thr_init.c	Sun Jun 19 12:52:50 2011	(r223293)
+++ head/lib/libthr/thread/thr_init.c	Sun Jun 19 13:35:36 2011	(r223294)
@@ -409,7 +409,6 @@ init_main_thread(struct pthread *thread)
 
 	thread->cancel_enable = 1;
 	thread->cancel_async = 0;
-	thr_set_name(thread->tid, "initial thread");
 
 	/* Initialize the mutex queue: */
 	TAILQ_INIT(&thread->mutexq);


More information about the svn-src-all mailing list