From owner-svn-src-head@FreeBSD.ORG Fri Dec 25 10:01:35 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3E8B1065672; Fri, 25 Dec 2009 10:01:35 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B37A88FC17; Fri, 25 Dec 2009 10:01:35 +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 nBPA1Z1g056495; Fri, 25 Dec 2009 10:01:35 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nBPA1Z4w056493; Fri, 25 Dec 2009 10:01:35 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <200912251001.nBPA1Z4w056493@svn.freebsd.org> From: Xin LI Date: Fri, 25 Dec 2009 10:01:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r200981 - head/usr.bin/killall X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Dec 2009 10:01:35 -0000 Author: delphij Date: Fri Dec 25 10:01:35 2009 New Revision: 200981 URL: http://svn.freebsd.org/changeset/base/200981 Log: Document the difference between FreeBSD and traditional System V killall commands. MFC after: 1 month Modified: head/usr.bin/killall/killall.1 Modified: head/usr.bin/killall/killall.1 ============================================================================== --- head/usr.bin/killall/killall.1 Fri Dec 25 09:58:19 2009 (r200980) +++ head/usr.bin/killall/killall.1 Fri Dec 25 10:01:35 2009 (r200981) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd May 27, 2009 +.Dd December 25, 2009 .Os .Dt KILLALL 1 .Sh NAME @@ -145,6 +145,17 @@ command appeared in It has been modeled after the .Nm command as available on other platforms. +.Sh IMPLEMENTATION NOTES +This +.Fx +implementation of +.Nm +have completely different semantics as compared to the traditional +.Ux +System V behavior of +.Nm , +which will kill all processes that the current user is able to +kill, and is intended to be used by the system shutdown process only. .Sh AUTHORS .An -nosplit The