From owner-cvs-all@FreeBSD.ORG Sun May 25 17:37:08 2003 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 E6B7337B401; Sun, 25 May 2003 17:37:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81D3943F85; Sun, 25 May 2003 17:37:08 -0700 (PDT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4Q0b80U026596; Sun, 25 May 2003 17:37:08 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4Q0b7XH026595; Sun, 25 May 2003 17:37:07 -0700 (PDT) Message-Id: <200305260037.h4Q0b7XH026595@repoman.freebsd.org> From: Mike Makonnen Date: Sun, 25 May 2003 17:37:07 -0700 (PDT) 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 thr_create.c thr_gc.c thr_private.h thr_stack.c 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: Mon, 26 May 2003 00:37:09 -0000 mtm 2003/05/25 17:37:07 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_create.c thr_gc.c thr_private.h thr_stack.c Log: Decouple the thread stack [de]allocating functions from the 'dead threads list' lock. It's not really necessary and we don't need the added complexity or potential for deadlocks. Approved by: re/blanket libthr Revision Changes Path 1.9 +2 -3 src/lib/libthr/thread/thr_create.c 1.5 +2 -0 src/lib/libthr/thread/thr_gc.c 1.14 +8 -0 src/lib/libthr/thread/thr_private.h 1.3 +4 -4 src/lib/libthr/thread/thr_stack.c