diff options
author | rwatson <rwatson@FreeBSD.org> | 2002-02-02 03:39:44 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2002-02-02 03:39:44 +0000 |
commit | 36a131477e61d6337711fbae88d2a6e9e93f82c9 (patch) | |
tree | d12bb284d4b4750a60205393d066e34f39f79b16 | |
parent | f9130c8f94211e5ea9c1e5ca2c2e795799507051 (diff) | |
download | FreeBSD-src-36a131477e61d6337711fbae88d2a6e9e93f82c9.zip FreeBSD-src-36a131477e61d6337711fbae88d2a6e9e93f82c9.tar.gz |
o Add the prototype of cr_cansignal() from an earlier change to
kern_prot.c. This has apparently been sitting in my local tree for
ages, and has been generating a warning during the building of
kern_prot.o.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, NAI Labs
-rw-r--r-- | sys/sys/proc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index deddf48..f037185 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -657,6 +657,7 @@ struct proc *zpfind __P((pid_t)); /* Find zombie process by id. */ void ast __P((struct trapframe *framep)); struct thread *choosethread __P((void)); +int cr_cansignal __P((struct ucred *cred, struct proc *proc, int signum)); int enterpgrp __P((struct proc *p, pid_t pgid, int mksess)); void faultin __P((struct proc *p)); void fixjobc __P((struct proc *p, struct pgrp *pgrp, int entering)); |