Remove two unused fields.

This commit is contained in:
mycroft 1993-12-21 09:47:45 +00:00
parent 925da8586c
commit 6c32b87568
2 changed files with 1 additions and 3 deletions

View File

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

View File

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