summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rhodes <trhodes@FreeBSD.org>2003-01-03 23:06:10 +0000
committerTom Rhodes <trhodes@FreeBSD.org>2003-01-03 23:06:10 +0000
commit62058fa9396f28c81549c4c1bda510488e2763a6 (patch)
tree1f21df1bd962d3ce8c168606ddc7e49ea12820e0
parent7538a3c02248200785b55308b2b39b9b75da2135 (diff)
Notes
-rw-r--r--share/man/man9/sleep.911
1 files changed, 7 insertions, 4 deletions
diff --git a/share/man/man9/sleep.9 b/share/man/man9/sleep.9
index ba1d339f9aad..fcba91340dab 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