X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fthreads%2Finterrupt.h;h=d54b7ef0893ff4caff7af5883d47b7c123fcd0d8;hb=be193f8d945ee145b404e8b33fae7616a4b408f4;hp=adb7fa99b4a424e116914551c4edb0f3d2d30d20;hpb=2c5bb7cae7970d66a988c5d8b096352b314a9c8e;p=pintos-anon diff --git a/src/threads/interrupt.h b/src/threads/interrupt.h index adb7fa9..d54b7ef 100644 --- a/src/threads/interrupt.h +++ b/src/threads/interrupt.h @@ -41,7 +41,7 @@ struct intr_frame /* Pushed by the CPU. These are the interrupted task's saved registers. */ - void (*eip) (void); /* Current or next instruction. */ + void (*eip) (void); /* Next instruction to execute. */ uint16_t cs, :16; /* Code segment for eip. */ uint32_t eflags; /* Saved CPU flags. */ void *esp; /* Saved stack pointer. */