Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/ppc32/include/fibril.h

    r8426a44d r619e2a6b  
    2727 */
    2828
    29 /** @addtogroup libcppc32
     29/** @addtogroup libcppc32       
    3030 * @{
    3131 */
     
    3838#include <sys/types.h>
    3939
    40 #define SP_DELTA  16
    41 
    42 /*
    43  * We define our own context_set, because we need to set
    44  * the TLS pointer to the tcb + 0x7000
     40/* We define our own context_set, because we need to set
     41 * the TLS pointer to the tcb+0x7000
    4542 *
    4643 * See tls_set in thread.h
    4744 */
    48 #define context_set(c, _pc, stack, size, ptls) \
    49         do { \
    50                 (c)->pc = (sysarg_t) (_pc); \
    51                 (c)->sp = ((sysarg_t) (stack)) + (size) - SP_DELTA; \
    52                 (c)->tls = ((sysarg_t) (ptls)) + 0x7000 + sizeof(tcb_t); \
    53         } while (0)
     45#define context_set(c, _pc, stack, size, ptls)                  \
     46        (c)->pc = (sysarg_t) (_pc);                             \
     47        (c)->sp = ((sysarg_t) (stack)) + (size) - SP_DELTA;     \
     48        (c)->tls = ((sysarg_t) (ptls)) + 0x7000 + sizeof(tcb_t);
     49
     50#define SP_DELTA        16
    5451
    5552typedef struct {
Note: See TracChangeset for help on using the changeset viewer.