From owner-svn-src-stable@FreeBSD.ORG Sun Jul 24 20:09:43 2011 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6992F106566B; Sun, 24 Jul 2011 20:09:43 +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 573308FC1A; Sun, 24 Jul 2011 20:09:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p6OK9hYx022788; Sun, 24 Jul 2011 20:09:43 GMT (envelope-from jilles@svn.freebsd.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p6OK9hMg022774; Sun, 24 Jul 2011 20:09:43 GMT (envelope-from jilles@svn.freebsd.org) Message-Id: <201107242009.p6OK9hMg022774@svn.freebsd.org> From: Jilles Tjoelker Date: Sun, 24 Jul 2011 20:09:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r224297 - in stable/8: lib/libc/gen lib/libc/sys usr.bin/lastcomm X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jul 2011 20:09:43 -0000 Author: jilles Date: Sun Jul 24 20:09:42 2011 New Revision: 224297 URL: http://svn.freebsd.org/changeset/base/224297 Log: MFC r207735: Update xrefs from 4.3BSD to modern signal functions in various man pages. sigvec(2) references have been updated to sigaction(2), sigsetmask(2) and sigblock(2) to sigprocmask(2), sigpause(2) to sigsuspend(2). Some legacy man pages still refer to them, that is OK. Modified: stable/8/lib/libc/gen/alarm.3 stable/8/lib/libc/gen/siginterrupt.3 stable/8/lib/libc/gen/ualarm.3 stable/8/lib/libc/sys/execve.2 stable/8/lib/libc/sys/fcntl.2 stable/8/lib/libc/sys/getitimer.2 stable/8/lib/libc/sys/getrlimit.2 stable/8/lib/libc/sys/sigaction.2 stable/8/lib/libc/sys/sigreturn.2 stable/8/lib/libc/sys/vfork.2 stable/8/usr.bin/lastcomm/lastcomm.1 Directory Properties: stable/8/lib/libc/ (props changed) stable/8/lib/libc/stdtime/ (props changed) stable/8/usr.bin/lastcomm/ (props changed) Modified: stable/8/lib/libc/gen/alarm.3 ============================================================================== --- stable/8/lib/libc/gen/alarm.3 Sun Jul 24 19:19:50 2011 (r224296) +++ stable/8/lib/libc/gen/alarm.3 Sun Jul 24 20:09:42 2011 (r224297) @@ -76,8 +76,7 @@ If no alarm is currently set, the return .Sh SEE ALSO .Xr setitimer 2 , .Xr sigaction 2 , -.Xr sigpause 2 , -.Xr sigvec 2 , +.Xr sigsuspend 2 , .Xr signal 3 , .Xr sleep 3 , .Xr ualarm 3 , Modified: stable/8/lib/libc/gen/siginterrupt.3 ============================================================================== --- stable/8/lib/libc/gen/siginterrupt.3 Sun Jul 24 19:19:50 2011 (r224296) +++ stable/8/lib/libc/gen/siginterrupt.3 Sun Jul 24 20:09:42 2011 (r224297) @@ -109,9 +109,8 @@ is not a valid signal number. .El .Sh SEE ALSO .Xr sigaction 2 , -.Xr sigblock 2 , -.Xr sigpause 2 , -.Xr sigsetmask 2 , +.Xr sigprocmask 2 , +.Xr sigsuspend 2 , .Xr signal 3 .Sh HISTORY The Modified: stable/8/lib/libc/gen/ualarm.3 ============================================================================== --- stable/8/lib/libc/gen/ualarm.3 Sun Jul 24 19:19:50 2011 (r224296) +++ stable/8/lib/libc/gen/ualarm.3 Sun Jul 24 20:09:42 2011 (r224297) @@ -84,8 +84,8 @@ A microsecond is 0.000001 seconds. .Sh SEE ALSO .Xr getitimer 2 , .Xr setitimer 2 , -.Xr sigpause 2 , -.Xr sigvec 2 , +.Xr sigaction 2 , +.Xr sigsuspend 2 , .Xr alarm 3 , .Xr signal 3 , .Xr sleep 3 , Modified: stable/8/lib/libc/sys/execve.2 ============================================================================== --- stable/8/lib/libc/sys/execve.2 Sun Jul 24 19:19:50 2011 (r224296) +++ stable/8/lib/libc/sys/execve.2 Sun Jul 24 20:09:42 2011 (r224297) @@ -189,8 +189,8 @@ the calling process: .It interval timers Ta see Xr getitimer 2 .It resource limits Ta see Xr getrlimit 2 .It file mode mask Ta see Xr umask 2 -.It signal mask Ta see Xr sigvec 2 , -.Xr sigsetmask 2 +.It signal mask Ta see Xr sigaction 2 , +.Xr sigprocmask 2 .El .Pp When a program is executed as a result of an Modified: stable/8/lib/libc/sys/fcntl.2 ============================================================================== --- stable/8/lib/libc/sys/fcntl.2 Sun Jul 24 19:19:50 2011 (r224296) +++ stable/8/lib/libc/sys/fcntl.2 Sun Jul 24 20:09:42 2011 (r224297) @@ -618,7 +618,7 @@ for the reasons as stated in .Xr flock 2 , .Xr getdtablesize 2 , .Xr open 2 , -.Xr sigvec 2 , +.Xr sigaction 2 , .Xr lockf 3 , .Xr tcgetpgrp 3 , .Xr tcsetpgrp 3 Modified: stable/8/lib/libc/sys/getitimer.2 ============================================================================== --- stable/8/lib/libc/sys/getitimer.2 Sun Jul 24 19:19:50 2011 (r224296) +++ stable/8/lib/libc/sys/getitimer.2 Sun Jul 24 20:09:42 2011 (r224297) @@ -171,7 +171,7 @@ to be handled. .Sh SEE ALSO .Xr gettimeofday 2 , .Xr select 2 , -.Xr sigvec 2 , +.Xr sigaction 2 , .Xr clocks 7 .Sh HISTORY The Modified: stable/8/lib/libc/sys/getrlimit.2 ============================================================================== --- stable/8/lib/libc/sys/getrlimit.2 Sun Jul 24 19:19:50 2011 (r224296) +++ stable/8/lib/libc/sys/getrlimit.2 Sun Jul 24 20:09:42 2011 (r224297) @@ -193,7 +193,7 @@ raised the maximum limit value, and the .Xr quota 1 , .Xr quotactl 2 , .Xr sigaltstack 2 , -.Xr sigvec 2 , +.Xr sigaction 2 , .Xr sysctl 3 , .Xr ulimit 3 .Sh HISTORY Modified: stable/8/lib/libc/sys/sigaction.2 ============================================================================== --- stable/8/lib/libc/sys/sigaction.2 Sun Jul 24 19:19:50 2011 (r224296) +++ stable/8/lib/libc/sys/sigaction.2 Sun Jul 24 20:09:42 2011 (r224297) @@ -609,13 +609,9 @@ or .Xr kill 2 , .Xr ptrace 2 , .Xr sigaltstack 2 , -.Xr sigblock 2 , -.Xr sigpause 2 , .Xr sigpending 2 , .Xr sigprocmask 2 , -.Xr sigsetmask 2 , .Xr sigsuspend 2 , -.Xr sigvec 2 , .Xr wait 2 , .Xr fpsetmask 3 , .Xr setjmp 3 , Modified: stable/8/lib/libc/sys/sigreturn.2 ============================================================================== --- stable/8/lib/libc/sys/sigreturn.2 Sun Jul 24 19:19:50 2011 (r224296) +++ stable/8/lib/libc/sys/sigreturn.2 Sun Jul 24 20:09:42 2011 (r224297) @@ -83,7 +83,7 @@ The process status longword is invalid o raise the privilege level of the process. .El .Sh SEE ALSO -.Xr sigvec 2 , +.Xr sigaction 2 , .Xr setjmp 3 , .Xr ucontext 3 .Sh HISTORY Modified: stable/8/lib/libc/sys/vfork.2 ============================================================================== --- stable/8/lib/libc/sys/vfork.2 Sun Jul 24 19:19:50 2011 (r224296) +++ stable/8/lib/libc/sys/vfork.2 Sun Jul 24 20:09:42 2011 (r224297) @@ -104,7 +104,7 @@ Same as for .Xr _exit 2 , .Xr fork 2 , .Xr rfork 2 , -.Xr sigvec 2 , +.Xr sigaction 2 , .Xr wait 2 , .Xr exit 3 .Sh HISTORY Modified: stable/8/usr.bin/lastcomm/lastcomm.1 ============================================================================== --- stable/8/usr.bin/lastcomm/lastcomm.1 Sun Jul 24 19:19:50 2011 (r224296) +++ stable/8/usr.bin/lastcomm/lastcomm.1 Sun Jul 24 20:09:42 2011 (r224297) @@ -168,7 +168,7 @@ while will print details of each terminating command. .Sh SEE ALSO .Xr last 1 , -.Xr sigvec 2 , +.Xr sigaction 2 , .Xr acct 5 , .Xr core 5 .Sh HISTORY