diff options
Diffstat (limited to 'sys/sys/proc.h')
| -rw-r--r-- | sys/sys/proc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index f69aba69bf35..e440c4058c0c 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -716,10 +716,10 @@ void fork_return(struct thread *, struct trapframe *); int inferior(struct proc *p); int leavepgrp(struct proc *p); void mi_switch(void); -int p_candebug(struct proc *p1, struct proc *p2); -int p_cansee(struct proc *p1, struct proc *p2); -int p_cansched(struct proc *p1, struct proc *p2); -int p_cansignal(struct proc *p1, struct proc *p2, int signum); +int p_candebug(struct thread *td, struct proc *p); +int p_cansee(struct thread *td, struct proc *p); +int p_cansched(struct thread *td, struct proc *p); +int p_cansignal(struct thread *td, struct proc *p, int signum); struct pargs *pargs_alloc(int len); void pargs_drop(struct pargs *pa); void pargs_free(struct pargs *pa); |
