Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/include/context.h

    rdc0b964 r7397c73  
    2727 */
    2828
    29 /** @addtogroup ia32
     29/** @addtogroup ia32   
    3030 * @{
    3131 */
     
    3737
    3838#ifdef KERNEL
     39#include <arch/types.h>
    3940
    40 #include <typedefs.h>
    41 
    42 #define STACK_ITEM_SIZE  4
     41#define STACK_ITEM_SIZE 4
    4342
    4443/*
     
    4847 * One item is put onto stack to support get_stack_base().
    4948 */
    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)
     49#define SP_DELTA        (8 + STACK_ITEM_SIZE)
    5850
    5951#endif /* KERNEL */
Note: See TracChangeset for help on using the changeset viewer.