diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 1999-08-09 17:31:30 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 1999-08-09 17:31:30 +0000 |
commit | 2028697c9aa99404bf3b0fbe1fb4412b18ba82c9 (patch) | |
tree | 84d8e715cfe073fb3962c085fa4460b62a7fbe83 /bin/sleep/sleep.1 | |
parent | a063132590e66522aba9a9fcec8806381088754b (diff) |
There is no special handling for SIGALRM as
sleep(3) is implemented using nanosleep(2).
Notes
Notes:
svn path=/head/; revision=49576
Diffstat (limited to 'bin/sleep/sleep.1')
-rw-r--r-- | bin/sleep/sleep.1 | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/bin/sleep/sleep.1 b/bin/sleep/sleep.1 index 9f362090496e..8c6e33ff2821 100644 --- a/bin/sleep/sleep.1 +++ b/bin/sleep/sleep.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)sleep.1 8.3 (Berkeley) 4/18/94 -.\" $Id: sleep.1,v 1.8 1998/05/18 06:46:11 charnier Exp $ +.\" $Id: sleep.1,v 1.9 1999/05/08 10:22:02 kris Exp $ .\" .Dd April 18, 1994 .Dt SLEEP 1 @@ -54,21 +54,13 @@ suspends execution for a minimum of is used to schedule the execution of other commands (see .Sx EXAMPLES below). -.Pp -If the -.Nm -command -receives a SIGALRM signal, it terminates normally with a zero exit status, -for any other signal it takes the standard action. .Sh DIAGNOSTICS The .Nm utility exits with one of the following values: .Bl -tag -width flag .It Li \&0 -On successful completion, or if the signal -.Dv SIGALRM -was received. +On successful completion. .It Li \&>\&0 An error occurred. .El @@ -112,7 +104,7 @@ is done courteously by sleeping for 70 seconds in between each awk job. .Sh SEE ALSO .Xr at 1 , -.Xr setitimer 2 , +.Xr nanosleep 2 , .Xr alarm 3 , .Xr sleep 3 .Sh STANDARDS |