From owner-cvs-all@FreeBSD.ORG Sun Mar 28 06:05:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DC4516A4CE; Sun, 28 Mar 2004 06:05:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 994CF43D1D; Sun, 28 Mar 2004 06:05:29 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i2SE5TGe006533; Sun, 28 Mar 2004 06:05:29 -0800 (PST) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i2SE5STq006532; Sun, 28 Mar 2004 06:05:28 -0800 (PST) (envelope-from mtm) Message-Id: <200403281405.i2SE5STq006532@repoman.freebsd.org> From: Mike Makonnen Date: Sun, 28 Mar 2004 06:05:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthr/thread Makefile.inc thr_create.c thr_exit.c thr_gc.c thr_init.c thr_join.c thr_private.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Mar 2004 14:05:29 -0000 mtm 2004/03/28 06:05:28 PST FreeBSD src repository Modified files: lib/libthr/thread Makefile.inc thr_create.c thr_exit.c thr_init.c thr_join.c thr_private.h Removed files: lib/libthr/thread thr_gc.c Log: Remove the garbage collector thread. All resources are freed in-line. If the exiting thread cannot release a resource, then the next thread to exit will release it. Revision Changes Path 1.6 +0 -1 src/lib/libthr/thread/Makefile.inc 1.14 +0 -15 src/lib/libthr/thread/thr_create.c 1.12 +38 -10 src/lib/libthr/thread/thr_exit.c 1.9 +0 -203 src/lib/libthr/thread/thr_gc.c (dead) 1.13 +2 -4 src/lib/libthr/thread/thr_init.c 1.12 +3 -3 src/lib/libthr/thread/thr_join.c 1.34 +1 -8 src/lib/libthr/thread/thr_private.h