From owner-cvs-src@FreeBSD.ORG Sun Jun 27 10:01:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C60E816A4CE; Sun, 27 Jun 2004 10:01:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0BC243D2F; Sun, 27 Jun 2004 10:01:55 +0000 (GMT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i5RA1ZYC097991; Sun, 27 Jun 2004 10:01:35 GMT (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i5RA1Zlg097990; Sun, 27 Jun 2004 10:01:35 GMT (envelope-from mtm) Message-Id: <200406271001.i5RA1Zlg097990@repoman.freebsd.org> From: Mike Makonnen Date: Sun, 27 Jun 2004 10:01:35 +0000 (UTC) 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_atfork.c thr_init.c thr_private.h thr_syscalls.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jun 2004 10:01:55 -0000 mtm 2004-06-27 10:01:35 UTC FreeBSD src repository Modified files: lib/libthr/thread Makefile.inc thr_init.c thr_private.h thr_syscalls.c Added files: lib/libthr/thread thr_atfork.c Log: Implement pthread_atfork in libthr. This is mostly from deichen's work in libpthread. Submitted by: Dan Nelson Revision Changes Path 1.8 +1 -0 src/lib/libthr/thread/Makefile.inc 1.1 +60 -0 src/lib/libthr/thread/thr_atfork.c (new) 1.17 +4 -0 src/lib/libthr/thread/thr_init.c 1.37 +10 -0 src/lib/libthr/thread/thr_private.h 1.7 +58 -0 src/lib/libthr/thread/thr_syscalls.c