Moved declaration of bootverbose to a better place.  It isn't
machine-dependent.

proc.h:
Moved declaration of cpu_fork() to a better place.  Only its
implementation is machine-dependent.
This commit is contained in:
Bruce Evans 1996-04-07 16:46:28 +00:00
parent 860ff32995
commit ae58fb1c43
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=15113
2 changed files with 4 additions and 2 deletions

View file

@ -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 *));

View file

@ -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.