Changeset 00bb6965 in mainline for kernel/generic/include/ipc/ipc.h


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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.