From 98feca67b61085bd7f59e55486be074e6f3d0bf2 Mon Sep 17 00:00:00 2001 From: mtm Date: Wed, 21 May 2003 03:34:54 +0000 Subject: Re-enable the garbage collector thread in anticipation of further locking work. I can't see anything obviously wrong with it (other than the need to update the locking). Approved by: markm/mentor, re/blanket libthr --- lib/libthr/thread/thr_create.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib/libthr') diff --git a/lib/libthr/thread/thr_create.c b/lib/libthr/thread/thr_create.c index d2ef538..4fb29cb 100644 --- a/lib/libthr/thread/thr_create.c +++ b/lib/libthr/thread/thr_create.c @@ -200,10 +200,8 @@ _pthread_create(pthread_t * thread, const pthread_attr_t * attr, * Start a garbage collector thread * if necessary. */ -#if 0 if (f_gc && pthread_create(&gc_thread,NULL, _thread_gc,NULL) != 0) PANIC("Can't create gc thread"); -#endif return (0); } -- cgit v1.1