From owner-svn-src-all@FreeBSD.ORG Fri Dec 25 21:28:16 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A4B6106568F; Fri, 25 Dec 2009 21:28:16 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 78BFE8FC15; Fri, 25 Dec 2009 21:28:16 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nBPLSGi7072013; Fri, 25 Dec 2009 21:28:16 GMT (envelope-from jilles@svn.freebsd.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nBPLSGik072011; Fri, 25 Dec 2009 21:28:16 GMT (envelope-from jilles@svn.freebsd.org) Message-Id: <200912252128.nBPLSGik072011@svn.freebsd.org> From: Jilles Tjoelker Date: Fri, 25 Dec 2009 21:28:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r201002 - in stable/7/bin: . pwait X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Dec 2009 21:28:16 -0000 Author: jilles Date: Fri Dec 25 21:28:16 2009 New Revision: 201002 URL: http://svn.freebsd.org/changeset/base/201002 Log: MFC r199458: Add pwait utility, which waits for any process to terminate. This is similar to the Solaris utility of the same name. Some use cases: * rc.subr's wait_for_pids * interactive use, e.g. to shut down the computer when some task is done even if the task is already running Added: stable/7/bin/pwait/ - copied from r199458, head/bin/pwait/ Modified: stable/7/bin/Makefile Directory Properties: stable/7/bin/ (props changed) stable/7/bin/chflags/ (props changed) stable/7/bin/chio/ (props changed) stable/7/bin/cp/ (props changed) stable/7/bin/csh/ (props changed) stable/7/bin/dd/ (props changed) stable/7/bin/df/ (props changed) stable/7/bin/ln/ (props changed) stable/7/bin/pax/ (props changed) stable/7/bin/ps/ (props changed) stable/7/bin/rm/ (props changed) stable/7/bin/sh/ (props changed) Modified: stable/7/bin/Makefile ============================================================================== --- stable/7/bin/Makefile Fri Dec 25 21:14:34 2009 (r201001) +++ stable/7/bin/Makefile Fri Dec 25 21:28:16 2009 (r201002) @@ -26,6 +26,7 @@ SUBDIR= cat \ mv \ pax \ ps \ + pwait \ pwd \ ${_rcp} \ realpath \