diff options
author | trhodes <trhodes@FreeBSD.org> | 2003-01-03 23:06:10 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2003-01-03 23:06:10 +0000 |
commit | 3d5980933a3ab90f4f289d6a108ca9b3f952f754 (patch) | |
tree | 1f21df1bd962d3ce8c168606ddc7e49ea12820e0 /share | |
parent | 96f6c756aec313cc9d28ad50ccaf4e8a0502603f (diff) | |
download | FreeBSD-src-3d5980933a3ab90f4f289d6a108ca9b3f952f754.zip FreeBSD-src-3d5980933a3ab90f4f289d6a108ca9b3f952f754.tar.gz |
mdoc(4) police: Markup. Fix 1 hard sentence break.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/sleep.9 | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/share/man/man9/sleep.9 b/share/man/man9/sleep.9 index ba1d339..fcba913 100644 --- a/share/man/man9/sleep.9 +++ b/share/man/man9/sleep.9 @@ -82,8 +82,10 @@ when a large number of processes are sleeping on the same address, but only one of them can actually do any useful work when made runnable. .Pp -.Nm Tsleep -is the general sleep call. Suspends the current process until a wakeup is +The +.Nm tsleep +function is the general sleep call. +Suspends the current process until a wakeup is performed on the specified identifier. The process will then be made runnable with the specified @@ -110,8 +112,9 @@ is returned if the system call should be interrupted by the signal (return .Er EINTR ) . .Pp -.Nm Msleep -is a variation on tsleep. +The +.Nm sleep +function is a variation on tsleep. The parameter .Ar mtx is a mutex, which will be exited before sleeping, and entered before |