stale beer- place structure in right file
This commit is contained in:
parent
a8d2213784
commit
6b092524ea
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: alpha_cpu.h,v 1.21 1998/07/08 16:48:49 thorpej Exp $ */
|
||||
/* $NetBSD: alpha_cpu.h,v 1.22 1998/07/08 17:20:42 mjacob Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996 Carnegie-Mellon University.
|
||||
|
@ -183,16 +183,6 @@ struct alpha_logout_area {
|
|||
#define ALPHA_SYS_MCHECK 0x660 /* System machine check */
|
||||
#define ALPHA_PROC_MCHECK 0x670 /* Processor machine check */
|
||||
|
||||
/* Per-CPU info for handling machine checks, an array of which */
|
||||
/* is allocated early in startup */
|
||||
struct mchkinfo {
|
||||
volatile u_int mc_expected; /* machine check expected */
|
||||
volatile u_int mc_received; /* machine check received */
|
||||
/*
|
||||
* We don't really need more info at this time.
|
||||
*/
|
||||
};
|
||||
|
||||
/*
|
||||
* Virtual Memory Management definitions [OSF/1 PALcode Specific]
|
||||
*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cpu.h,v 1.22 1998/07/08 00:39:02 mjacob Exp $ */
|
||||
/* $NetBSD: cpu.h,v 1.23 1998/07/08 17:20:42 mjacob Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988 University of Utah.
|
||||
|
@ -131,7 +131,16 @@ struct proc;
|
|||
struct reg;
|
||||
struct rpb;
|
||||
struct trapframe;
|
||||
struct mchkinfo;
|
||||
|
||||
/* Per-CPU info for handling machine checks, an array of which */
|
||||
/* is allocated early in startup */
|
||||
struct mchkinfo {
|
||||
volatile u_int mc_expected; /* machine check expected */
|
||||
volatile u_int mc_received; /* machine check received */
|
||||
/*
|
||||
* We don't really need more info at this time.
|
||||
*/
|
||||
};
|
||||
|
||||
extern int cold;
|
||||
extern struct proc *fpcurproc;
|
||||
|
|
Loading…
Reference in New Issue