diff options
| -rw-r--r-- | sys/sys/proc.h | 3 | ||||
| -rw-r--r-- | sys/sys/systm.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 0d0778f0044f..a8cd5c32d62e 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)proc.h 8.15 (Berkeley) 5/19/95 - * $Id: proc.h,v 1.23 1996/03/10 23:48:35 hsu Exp $ + * $Id: proc.h,v 1.22 1996/03/11 06:10:11 hsu Exp $ */ #ifndef _SYS_PROC_H_ @@ -303,6 +303,7 @@ void wakeup __P((void *chan)); __dead void cpu_exit __P((struct proc *)) __dead2; __dead void exit1 __P((struct proc *, int)) __dead2; +int cpu_fork __P((struct proc *, struct proc *)); int trace_req __P((struct proc *)); void cpu_wait __P((struct proc *)); int cpu_coredump __P((struct proc *, struct vnode *, struct ucred *)); diff --git a/sys/sys/systm.h b/sys/sys/systm.h index d30fb06d6b70..07c7d3c852a0 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)systm.h 8.7 (Berkeley) 3/29/95 - * $Id: systm.h,v 1.38 1996/02/25 09:21:55 hsu Exp $ + * $Id: systm.h,v 1.37 1996/03/11 02:23:33 hsu Exp $ */ #ifndef _SYS_SYSTM_H_ @@ -101,6 +101,7 @@ extern dev_t swapdev; /* swapping device */ extern struct vnode *swapdev_vp;/* vnode equivalent to above */ extern int boothowto; /* reboot flags, from console subsystem */ +extern int bootverbose; /* nonzero to print verbose messages */ /* * General function declarations. |
