Garbage collect unused stack segment since r190620.

This commit is contained in:
Jung-uk Kim 2009-04-01 16:24:24 +00:00
parent b2e4ce45d9
commit 4a608e44b5
2 changed files with 0 additions and 2 deletions

View file

@ -161,7 +161,6 @@ ASSYM(XPCB_CR0, offsetof(struct xpcb, xpcb_cr0));
ASSYM(XPCB_CR2, offsetof(struct xpcb, xpcb_cr2));
ASSYM(XPCB_CR4, offsetof(struct xpcb, xpcb_cr4));
ASSYM(XPCB_KGSBASE, offsetof(struct xpcb, xpcb_kgsbase));
ASSYM(XPCB_SS, offsetof(struct xpcb, xpcb_ss));
ASSYM(XPCB_GDT, offsetof(struct xpcb, xpcb_gdt));
ASSYM(XPCB_IDT, offsetof(struct xpcb, xpcb_idt));
ASSYM(XPCB_LDT, offsetof(struct xpcb, xpcb_ldt));

View file

@ -86,7 +86,6 @@ struct xpcb {
register_t xpcb_cr2;
register_t xpcb_cr4;
register_t xpcb_kgsbase;
uint32_t xpcb_ss;
struct region_descriptor xpcb_gdt;
struct region_descriptor xpcb_idt;
struct region_descriptor xpcb_ldt;