Changes in kernel/arch/ia32/include/context.h [7397c73:dc0b964] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified kernel/arch/ia32/include/context.h ¶
r7397c73 rdc0b964 27 27 */ 28 28 29 /** @addtogroup ia32 29 /** @addtogroup ia32 30 30 * @{ 31 31 */ … … 37 37 38 38 #ifdef KERNEL 39 #include <arch/types.h>40 39 41 #define STACK_ITEM_SIZE 4 40 #include <typedefs.h> 41 42 #define STACK_ITEM_SIZE 4 42 43 43 44 /* … … 47 48 * One item is put onto stack to support get_stack_base(). 48 49 */ 49 #define SP_DELTA (8 + STACK_ITEM_SIZE) 50 #define SP_DELTA (8 + STACK_ITEM_SIZE) 51 52 #define context_set(c, _pc, stack, size) \ 53 do { \ 54 (c)->pc = (uintptr_t) (_pc); \ 55 (c)->sp = ((uintptr_t) (stack)) + (size) - SP_DELTA; \ 56 (c)->ebp = 0; \ 57 } while (0) 50 58 51 59 #endif /* KERNEL */
Note:
See TracChangeset
for help on using the changeset viewer.