diff options
| author | 2016-03-06 05:20:26 +0000 | |
|---|---|---|
| committer | 2016-03-06 05:20:26 +0000 | |
| commit | a5b054b1c728f5c6c8eadd5ec51587cdbe232b76 (patch) | |
| tree | 87fb21908949e9e10564965a21668b6da31bfe3b /sys/kern/kern_exit.c | |
| parent | Increase PID_MAX to 99999: the compats that constrained it to SHRT_MAX-1 are (diff) | |
| download | wireguard-openbsd-a5b054b1c728f5c6c8eadd5ec51587cdbe232b76.tar.xz wireguard-openbsd-a5b054b1c728f5c6c8eadd5ec51587cdbe232b76.zip | |
Localize some declarations to kern_exit.c: the last good reason to put
them in sys/proc.h has been removed with compat_linux
diff from Michal Mazurek (akfaew (at) jasminek.net)
Diffstat (limited to 'sys/kern/kern_exit.c')
| -rw-r--r-- | sys/kern/kern_exit.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/kern/kern_exit.c b/sys/kern/kern_exit.c index 9b3e397f182..5b36b203922 100644 --- a/sys/kern/kern_exit.c +++ b/sys/kern/kern_exit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_exit.c,v 1.154 2015/10/09 01:10:27 deraadt Exp $ */ +/* $OpenBSD: kern_exit.c,v 1.155 2016/03/06 05:20:26 guenther Exp $ */ /* $NetBSD: kern_exit.c,v 1.39 1996/04/22 01:38:25 christos Exp $ */ /* @@ -73,6 +73,10 @@ #include <uvm/uvm_extern.h> +void proc_finish_wait(struct proc *, struct proc *); +void process_zap(struct process *); +void proc_free(struct proc *); + /* * exit -- * Death of process. |
