unsigned int read_exec_only : 1;
unsigned int limit_in_pages : 1;
unsigned int seg_not_present : 1;
- unsigned int useable : 1;
+ unsigned int usable : 1;
unsigned int garbage : 25;
};
ptr->read_exec_only = !(entry->HighWord.Bits.Type & 2);
ptr->limit_in_pages = entry->HighWord.Bits.Granularity;
ptr->seg_not_present = !entry->HighWord.Bits.Pres;
- ptr->useable = entry->HighWord.Bits.Sys;
+ ptr->usable = entry->HighWord.Bits.Sys;
ptr->garbage = 0;
}
unsigned int read_exec_only : 1;
unsigned int limit_in_pages : 1;
unsigned int seg_not_present : 1;
- unsigned int useable : 1;
+ unsigned int usable : 1;
unsigned int garbage : 25;
} thread_ldt = { -1, (unsigned long)thread_data, 0xfffff, 1, 0, 0, 1, 0, 1, 0 };