pcb.h (5813dc03bd2fe3bd09b1793a9b95b27e0f1d7432) pcb.h (f1532aadeefd1f9ee9f9b5d94d049a54bb5bc0e6)
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 47 unchanged lines hidden (view full) ---

56
57 int pcb_dr0;
58 int pcb_dr1;
59 int pcb_dr2;
60 int pcb_dr3;
61 int pcb_dr6;
62 int pcb_dr7;
63
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 47 unchanged lines hidden (view full) ---

56
57 int pcb_dr0;
58 int pcb_dr1;
59 int pcb_dr2;
60 int pcb_dr3;
61 int pcb_dr6;
62 int pcb_dr7;
63
64#ifdef USER_LDT
65 struct pcb_ldt *pcb_ldt; /* per process (user) LDT */
64 struct pcb_ldt *pcb_ldt; /* per process (user) LDT */
66#else
67 struct pcb_ldt *pcb_ldt_dontuse;
68#endif
69 struct save87 pcb_savefpu; /* floating point state for 287/387 */
70 u_char pcb_flags;
71#define FP_SOFTFP 0x01 /* process using software fltng pnt emulator */
72#define PCB_DBREGS 0x02 /* process using debug registers */
73 caddr_t pcb_onfault; /* copyin/out fault recovery */
74 int pcb_gs;
75 struct pcb_ext *pcb_ext; /* optional pcb extension */
76 u_long __pcb_spare[3]; /* adjust to avoid core dump size changes */

--- 14 unchanged lines hidden ---
65 struct save87 pcb_savefpu; /* floating point state for 287/387 */
66 u_char pcb_flags;
67#define FP_SOFTFP 0x01 /* process using software fltng pnt emulator */
68#define PCB_DBREGS 0x02 /* process using debug registers */
69 caddr_t pcb_onfault; /* copyin/out fault recovery */
70 int pcb_gs;
71 struct pcb_ext *pcb_ext; /* optional pcb extension */
72 u_long __pcb_spare[3]; /* adjust to avoid core dump size changes */

--- 14 unchanged lines hidden ---