Changeset 00bb6965 in mainline for kernel


Ignore:
Timestamp:
2006-12-11T23:17:58Z (19 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.

Location:
kernel
Files:
2 edited

Legend:

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

    rdff0a94 r00bb6965  
    4646#endif
    4747
    48 #define context_set(c, _pc, stack, size)                                                                \
    49         (c)->pc = ((uintptr_t) _pc) - 8;                                                                \
    50         (c)->sp = ((uintptr_t) stack) + ALIGN_UP((size), STACK_ALIGNMENT) - (STACK_BIAS + SP_DELTA);    \
     48#define context_set(c, _pc, stack, size)                        \
     49        (c)->pc = ((uintptr_t) _pc) - 8;                        \
     50        (c)->sp = ((uintptr_t) stack) + ALIGN_UP((size),        \
     51                STACK_ALIGNMENT) - (STACK_BIAS + SP_DELTA);     \
    5152        (c)->fp = -STACK_BIAS
    5253       
    5354
    5455/*
    55  * Only save registers that must be preserved across
     56 * Save only registers that must be preserved across
    5657 * function calls.
    5758 */
  • kernel/generic/include/ipc/ipc.h

    rdff0a94 r00bb6965  
    129129
    130130/** Send as_area over IPC
    131  * - ARG1 - src base address
    132  * - ARG2 - size of src as(filled automatically by kernel)
    133  * - ARG3 - flags of the area being sent
    134  * - on answer ARG1 - dst base adress
     131 * - ARG1 - src as_area base address
     132 * - ARG2 - size of src as_area (filled automatically by kernel)
     133 * - ARG3 - flags of the as_area being sent
     134 *
     135 * on answer:
     136 * - ARG1 - dst as_area base adress
    135137 */
    136138#define IPC_M_AS_AREA_SEND      5
    137139
    138140/** Get as_area over IPC
    139  * - ARG1 - Where the area will be mapped
    140  * - ARG2 - Expected size of area
    141  * - ARG3 - User defined argument
    142  * on answer - the server sets ARG1 as src as address of the as_area
    143  * to be shared, ARG2 is set to rights that will be used for sharing,
    144  * which is returned as part of answer back to the receiver
     141 * - ARG1 - where the as_area will be mapped
     142 * - ARG2 - expected size of the as_area
     143 * - ARG3 - user defined argument
     144 *
     145 * on answer, the server sets:
     146 *
     147 * - ARG1 - src as_area base address
     148 * - ARG2 - flags that will be used for sharing
    145149 */
    146150#define IPC_M_AS_AREA_RECV      6
Note: See TracChangeset for help on using the changeset viewer.