diff options
author | bde <bde@FreeBSD.org> | 1997-04-11 17:55:19 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-04-11 17:55:19 +0000 |
commit | 40a06f087a3b0e387b4cedcc0218c7879a2ac9a1 (patch) | |
tree | b01f88cccb1f39c89fbd9ff98e7604c9a03e8859 | |
parent | 37c6de8c8b76367033f5cdc9cabd707c5cd9c455 (diff) | |
download | FreeBSD-src-40a06f087a3b0e387b4cedcc0218c7879a2ac9a1.zip FreeBSD-src-40a06f087a3b0e387b4cedcc0218c7879a2ac9a1.tar.gz |
Cleaned up synopsis:
- don't quote function names, since quoting them is unnecessary and
unusual and confuses my synopsis checker.
- include <sys/types.h> instead of <sys/param.h>. It is normal to
(have to) include <sys/param.h> instead of <sys/types.h>, but it
is more useful for man pages to document minimal prerequisites.
-rw-r--r-- | share/man/man9/psignal.9 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/psignal.9 b/share/man/man9/psignal.9 index 5dfc229..eedb35b 100644 --- a/share/man/man9/psignal.9 +++ b/share/man/man9/psignal.9 @@ -38,7 +38,7 @@ .Dt PSIGNAL 9 .Os .Sh NAME -.Fd #include <sys/param.h> +.Fd #include <sys/types.h> .Fd #include <sys/signalvar.h> .Nm psignal , .Nm pgsignal , @@ -46,11 +46,11 @@ .Nd post signal to a process or process group .Sh SYNOPSIS .Ft void -.Fn "psignal" "struct proc *p" "int signum" +.Fn psignal "struct proc *p" "int signum" .Ft void -.Fn "pgsignal" "struct pgrp *pgrp" "int signum" "int checkctty" +.Fn pgsignal "struct pgrp *pgrp" "int signum" "int checkctty" .Ft void -.Fn "gsignal" "int pgid" "int signum" +.Fn gsignal "int pgid" "int signum" .Sh DESCRIPTION These functions post a signal to one or more processes. The argument .Fa signum |