X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=blobdiff_plain;f=src%2Fuserprog%2Ftss.c;h=dfda3b9857d424dd250f0b4015ba350d9a23f3cc;hp=cddad93b54964b7795dba95b586dfa96aa8083eb;hb=8abbb333aea445641d967befd3ca477502ea770b;hpb=179d174444a023410c175bd2bc0c7f45be0fa508 diff --git a/src/userprog/tss.c b/src/userprog/tss.c index cddad93..dfda3b9 100644 --- a/src/userprog/tss.c +++ b/src/userprog/tss.c @@ -43,9 +43,10 @@ stack pointer to point to the new thread's kernel stack. (The call is in schedule_tail() in thread.c.) - See [IA32-v3] 6.2.1 for a description of the TSS and 5.12.1 - for a description of when and how stack switching occurs - during an interrupt. */ + See [IA32-v3a] 6.2.1 "Task-State Segment (TSS)" for a + description of the TSS. See [IA32-v3a] 5.12.1 "Exception- or + Interrupt-Handler Procedures" for a description of when and + how stack switching occurs during an interrupt. */ struct tss { uint16_t back_link, :16;