Move the PCB flag macros up next to the 'pcb_flags' member in the struct.

This commit is contained in:
John Baldwin 2009-03-05 16:52:50 +00:00
parent 843994aee1
commit 9edc34f864
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189411

View file

@ -56,6 +56,12 @@ struct pcb {
register_t pcb_fsbase;
register_t pcb_gsbase;
u_long pcb_flags;
#define PCB_DBREGS 0x02 /* process using debug registers */
#define PCB_FPUINITDONE 0x08 /* fpu state is initialized */
#define PCB_GS32BIT 0x20 /* linux gs switch */
#define PCB_32BIT 0x40 /* process has 32 bit context (segs etc) */
#define PCB_FULLCTX 0x80 /* full context restore on sysret */
u_int32_t pcb_ds;
u_int32_t pcb_es;
u_int32_t pcb_fs;
@ -68,11 +74,6 @@ struct pcb {
u_int64_t pcb_dr7;
struct savefpu pcb_save;
#define PCB_DBREGS 0x02 /* process using debug registers */
#define PCB_FPUINITDONE 0x08 /* fpu state is initialized */
#define PCB_GS32BIT 0x20 /* linux gs switch */
#define PCB_32BIT 0x40 /* process has 32 bit context (segs etc) */
#define PCB_FULLCTX 0x80 /* full context restore on sysret */
caddr_t pcb_onfault; /* copyin/out fault recovery */