Ignore:
Timestamp:
2006-12-11T23:17:58Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
df496c5
Parents:
dff0a94
Message:

Coding style fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/libc/arch/sparc64/include/psthread.h

    rdff0a94 r00bb6965  
    4646#endif
    4747
    48 #define context_set(c, _pc, stack, size, ptls)                                                          \
    49         (c)->pc = ((uintptr_t) _pc) - 8;                                                                \
    50         (c)->sp = ((uintptr_t) stack) + ALIGN_UP((size), STACK_ALIGNMENT) - (STACK_BIAS + SP_DELTA);    \
    51         (c)->fp = -STACK_BIAS;                                                                          \
     48#define context_set(c, _pc, stack, size, ptls)                  \
     49        (c)->pc = ((uintptr_t) _pc) - 8;                        \
     50        (c)->sp = ((uintptr_t) stack) + ALIGN_UP((size),        \
     51                STACK_ALIGNMENT) - (STACK_BIAS + SP_DELTA);     \
     52        (c)->fp = -STACK_BIAS;                                  \
    5253        (c)->tp = ptls
    5354       
    5455/*
    55  * Only save registers that must be preserved across
     56 * Save only registers that must be preserved across
    5657 * function calls.
    5758 */
Note: See TracChangeset for help on using the changeset viewer.