Remove two unused fields.
This commit is contained in:
parent
925da8586c
commit
6c32b87568
|
@ -75,7 +75,6 @@ struct pcb {
|
|||
#define FP_SOFTFP 0x20 /* process using software fltng pnt emulator */
|
||||
int pcb_iml; /* interrupt mask level */
|
||||
caddr_t pcb_onfault; /* copyin/out fault recovery */
|
||||
int unused;
|
||||
};
|
||||
|
||||
#ifdef KERNEL
|
||||
|
|
|
@ -31,14 +31,13 @@
|
|||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)proc.h 7.1 (Berkeley) 5/15/91
|
||||
* $Id: proc.h,v 1.3 1993/12/20 05:25:36 mycroft Exp $
|
||||
* $Id: proc.h,v 1.4 1993/12/21 09:47:57 mycroft Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
* Machine-dependent part of the proc structure for i386.
|
||||
*/
|
||||
struct mdproc {
|
||||
int unused;
|
||||
#ifdef notyet
|
||||
int *p_regs; /* registers on current frame */
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue