From owner-cvs-src@FreeBSD.ORG Sun Jan 15 17:50:40 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org 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 0F84216A41F; Sun, 15 Jan 2006 17:50:40 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C35B443D58; Sun, 15 Jan 2006 17:50:38 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k0FHocWk001315; Sun, 15 Jan 2006 17:50:38 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k0FHocw9001314; Sun, 15 Jan 2006 17:50:38 GMT (envelope-from delphij) Message-Id: <200601151750.k0FHocw9001314@repoman.freebsd.org> From: Xin LI Date: Sun, 15 Jan 2006 17:50:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libutil Makefile libutil.h pidfile.3 pidfile.c src/sys/sys param.h src/usr.bin/pkill pkill.1 pkill.c src/usr.sbin/cron/cron cron.c cron.h do_command.c src/usr.sbin/cron/lib misc.c src/usr.sbin/daemon Makefile daemon.8 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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, 15 Jan 2006 17:50:40 -0000 delphij 2006-01-15 17:50:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libutil Makefile libutil.h sys/sys param.h usr.bin/pkill pkill.1 pkill.c usr.sbin/cron/cron cron.c cron.h do_command.c usr.sbin/cron/lib misc.c usr.sbin/daemon Makefile daemon.8 daemon.c usr.sbin/inetd inetd.c usr.sbin/mountd Makefile mountd.c usr.sbin/moused Makefile moused.c usr.sbin/powerd Makefile powerd.8 powerd.c usr.sbin/syslogd syslogd.c usr.sbin/watchdogd Makefile watchdogd.c Added files: (Branch: RELENG_6) lib/libutil pidfile.3 pidfile.c Log: MFC pidfile(3) function, and convert several applications to make use of it. Bump __FreeBSDversion for the MFC. Discussed with: pjd Revision Changes Path 1.56.8.2 +8 -3 src/lib/libutil/Makefile 1.40.8.1 +17 -0 src/lib/libutil/libutil.h 1.3.2.1 +239 -0 src/lib/libutil/pidfile.3 (new) 1.1.2.1 +246 -0 src/lib/libutil/pidfile.c (new) 1.244.2.6 +1 -1 src/sys/sys/param.h 1.16.2.1 +13 -2 src/usr.bin/pkill/pkill.1 1.26.2.1 +36 -9 src/usr.bin/pkill/pkill.c 1.15.8.1 +26 -2 src/usr.sbin/cron/cron/cron.c 1.15.8.1 +2 -1 src/usr.sbin/cron/cron/cron.h 1.22.8.1 +1 -1 src/usr.sbin/cron/cron/do_command.c 1.12.2.1 +0 -59 src/usr.sbin/cron/lib/misc.c 1.2.12.1 +3 -0 src/usr.sbin/daemon/Makefile 1.6.2.1 +7 -2 src/usr.sbin/daemon/daemon.8 1.3.8.1 +14 -9 src/usr.sbin/daemon/daemon.c 1.129.2.1 +16 -8 src/usr.sbin/inetd/inetd.c 1.15.10.1 +3 -0 src/usr.sbin/mountd/Makefile 1.81.2.1 +13 -17 src/usr.sbin/mountd/mountd.c 1.7.2.1 +3 -0 src/usr.sbin/moused/Makefile 1.70.2.2 +13 -6 src/usr.sbin/moused/moused.c 1.2.2.1 +3 -0 src/usr.sbin/powerd/Makefile 1.5.2.2 +5 -0 src/usr.sbin/powerd/powerd.8 1.6.2.4 +28 -7 src/usr.sbin/powerd/powerd.c 1.144.2.2 +16 -9 src/usr.sbin/syslogd/syslogd.c 1.4.8.1 +2 -2 src/usr.sbin/watchdogd/Makefile 1.10.2.1 +16 -7 src/usr.sbin/watchdogd/watchdogd.c