From owner-cvs-all@FreeBSD.ORG Wed Jun 4 01:23:06 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 32FC837B401; Wed, 4 Jun 2003 01:23:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D94943F93; Wed, 4 Jun 2003 01:23:05 -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 h548N50U067036; Wed, 4 Jun 2003 01:23:05 -0700 (PDT) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h548N5aA067035; Wed, 4 Jun 2003 01:23:05 -0700 (PDT) Message-Id: <200306040823.h548N5aA067035@repoman.freebsd.org> From: Mike Makonnen Date: Wed, 4 Jun 2003 01:23:05 -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_init.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: Wed, 04 Jun 2003 08:23:06 -0000 mtm 2003/06/04 01:23:05 PDT FreeBSD src repository Modified files: lib/libthr/thread thr_init.c Log: Make C applications statically compiled with libthr work. Previously, an application compiled -static with libthr would dump core in malloc(3) because the stub thread initialization routine in libc would be used instead of the libthr supplied one. Revision Changes Path 1.8 +6 -0 src/lib/libthr/thread/thr_init.c