Clean up handling of stack frames.
[pintos-anon] / src / threads / switch.h
1 #ifndef HEADER_SWITCH_H
2 #define HEADER_SWITCH_H 1
3
4 #ifndef __ASSEMBLER__
5 /* thread_switch()'s stack frame. */
6 struct switch_frame 
7   {
8     uint32_t ebx;               /*  0: Saved %ebx. */
9     uint32_t ebp;               /*  4: Saved %ebp. */
10     uint32_t esi;               /*  8: Saved %esi. */
11     uint32_t edi;               /* 12: Saved %edi. */
12     void (*eip) (void);         /* 16: Return address. */
13     struct thread *cur;         /* 20: thread_switch()'s CUR argument. */
14     struct thread *next;        /* 24: thread_switch()'s NEXT argument. */
15   };
16
17 /* Switches from CUR, which must be the running thread, to NEXT,
18    which must also be running thread_switch(), returning CUR in
19    NEXT's context. */
20 struct thread *thread_switch (struct thread *cur, struct thread *next);
21 #endif
22
23 /* Offsets used by switch.S. */
24 #define SWITCH_CUR      20
25 #define SWITCH_NEXT     24
26
27 #endif /* switch.h */