summaryrefslogtreecommitdiffstats
path: root/lib/libc/compat-43
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2002-12-18 12:45:11 +0000
committerru <ru@FreeBSD.org>2002-12-18 12:45:11 +0000
commit8746d263e1451855025dc83dde5176cc9f1fbe3f (patch)
treeee7f7ba4650cadf44410ca9a44676c72c96739b7 /lib/libc/compat-43
parent160081aef68b0dc49b79d3b7702b75671d9c06ff (diff)
downloadFreeBSD-src-8746d263e1451855025dc83dde5176cc9f1fbe3f.zip
FreeBSD-src-8746d263e1451855025dc83dde5176cc9f1fbe3f.tar.gz
mdoc(7) police: "The .Fn function".
Diffstat (limited to 'lib/libc/compat-43')
-rw-r--r--lib/libc/compat-43/creat.26
-rw-r--r--lib/libc/compat-43/gethostid.38
-rw-r--r--lib/libc/compat-43/killpg.210
-rw-r--r--lib/libc/compat-43/sigpause.210
-rw-r--r--lib/libc/compat-43/sigsetmask.214
-rw-r--r--lib/libc/compat-43/sigvec.28
6 files changed, 40 insertions, 16 deletions
diff --git a/lib/libc/compat-43/creat.2 b/lib/libc/compat-43/creat.2
index dcfa4c5..6f8fc6f 100644
--- a/lib/libc/compat-43/creat.2
+++ b/lib/libc/compat-43/creat.2
@@ -50,7 +50,9 @@ This interface is made obsolete by:
.Ef
.Xr open 2 .
.Pp
-.Fn Creat
+The
+.Fn creat
+function
is the same as:
.Bd -literal -offset indent
open(path, O_CREAT | O_TRUNC | O_WRONLY, mode);
@@ -60,5 +62,5 @@ open(path, O_CREAT | O_TRUNC | O_WRONLY, mode);
.Sh HISTORY
The
.Fn creat
-function call appeared in
+function appeared in
.At v6 .
diff --git a/lib/libc/compat-43/gethostid.3 b/lib/libc/compat-43/gethostid.3
index 27b6d66..6a7c98b 100644
--- a/lib/libc/compat-43/gethostid.3
+++ b/lib/libc/compat-43/gethostid.3
@@ -48,14 +48,18 @@
.Ft void
.Fn sethostid "long hostid"
.Sh DESCRIPTION
-.Fn Sethostid
+The
+.Fn sethostid
+function
establishes a 32-bit identifier for the
current processor that is intended to be unique among all
UNIX systems in existence. This is normally a DARPA Internet
address for the local machine. This call is allowed only to the
super-user and is normally performed at boot time.
.Pp
-.Fn Gethostid
+The
+.Fn gethostid
+function
returns the 32-bit identifier for the current processor.
.Pp
This function has been deprecated.
diff --git a/lib/libc/compat-43/killpg.2 b/lib/libc/compat-43/killpg.2
index 5f42008..937140f 100644
--- a/lib/libc/compat-43/killpg.2
+++ b/lib/libc/compat-43/killpg.2
@@ -46,7 +46,9 @@
.Ft int
.Fn killpg "pid_t pgrp" "int sig"
.Sh DESCRIPTION
-.Fn Killpg
+The
+.Fn killpg
+function
sends the signal
.Fa sig
to the process group
@@ -68,7 +70,9 @@ to any process that is a descendant of the current process.
.Sh RETURN VALUES
.Rv -std killpg
.Sh ERRORS
-.Fn Killpg
+The
+.Fn killpg
+function
will fail and no signal will be sent if:
.Bl -tag -width Er
.It Bq Er EINVAL
@@ -92,5 +96,5 @@ of the sending process.
.Sh HISTORY
The
.Fn killpg
-function call appeared in
+function appeared in
.Bx 4.0 .
diff --git a/lib/libc/compat-43/sigpause.2 b/lib/libc/compat-43/sigpause.2
index 1af1064..611b06c 100644
--- a/lib/libc/compat-43/sigpause.2
+++ b/lib/libc/compat-43/sigpause.2
@@ -48,7 +48,9 @@
.Sy This interface is made obsolete by
.Xr sigsuspend 2 .
.Pp
-.Fn Sigpause
+The
+.Fn sigpause
+function
assigns
.Fa sigmask
to the set of masked signals
@@ -57,7 +59,9 @@ on return the set of masked signals is restored.
.Fa Sigmask
is usually 0 to indicate that no
signals are to be blocked.
-.Fn Sigpause
+The
+.Fn sigpause
+function
always terminates by being interrupted, returning -1 with
.Va errno
set to
@@ -72,6 +76,6 @@ set to
.Sh HISTORY
The
.Fn sigpause
-function call appeared in
+function appeared in
.Bx 4.2
and has been deprecated.
diff --git a/lib/libc/compat-43/sigsetmask.2 b/lib/libc/compat-43/sigsetmask.2
index f30bcd1..8e8d78f 100644
--- a/lib/libc/compat-43/sigsetmask.2
+++ b/lib/libc/compat-43/sigsetmask.2
@@ -55,13 +55,17 @@ This interface is made obsolete by:
.Ef
.Xr sigprocmask 2 .
.Pp
-.Fn Sigsetmask
+The
+.Fn sigsetmask
+function
sets the current signal mask to the specified
.Fa mask .
Signals are blocked from delivery if the corresponding bit in
.Fa mask
is a 1.
-.Fn Sigblock
+The
+.Fn sigblock
+function
adds the signals in the specified
.Fa mask
to the current signal mask,
@@ -80,9 +84,11 @@ or
.Dv SIGSTOP
to be blocked.
.Sh RETURN VALUES
-.Fn Sigblock
+The
+.Fn sigblock
and
.Fn sigsetmask
+functions
return the previous set of masked signals.
.Sh SEE ALSO
.Xr kill 2 ,
@@ -96,6 +102,6 @@ The
.Fn sigsetmask
and
.Fn sigblock
-function calls first appeared in
+functions first appeared in
.Bx 4.2
and have been deprecated.
diff --git a/lib/libc/compat-43/sigvec.2 b/lib/libc/compat-43/sigvec.2
index 25f1b14..3354136 100644
--- a/lib/libc/compat-43/sigvec.2
+++ b/lib/libc/compat-43/sigvec.2
@@ -116,7 +116,9 @@ adding the signal to be delivered, and
.Em or Ns 'ing
in the signal mask associated with the handler to be invoked.
.Pp
-.Fn Sigvec
+The
+.Fn sigvec
+function
assigns a handler for a specific signal. If
.Fa vec
is non-zero, it
@@ -258,7 +260,9 @@ hence it should not be used if backward compatibility is needed.
.Sh RETURN VALUES
.Rv -std sigvec
.Sh ERRORS
-.Fn Sigvec
+The
+.Fn sigvec
+function
will fail and no new signal handler will be installed if one
of the following occurs:
.Bl -tag -width Er
OpenPOWER on IntegriCloud