Changeset 36d852c in mainline for kernel/generic/include/ipc/ipc.h


Ignore:
Timestamp:
2007-12-23T19:45:30Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
654b7db
Parents:
5c786d1
Message:

Rename IPC_M_DATA_SEND to IPC_M_DATA_WRITE. Now, when we also add
IPC_M_DATA_READ, it will not clash and cause confusion with userspace wrappers
such as ipc_data_receive(). Rename the forementioned wrappers to
ipc_data_write_send(), ipc_data_write_receive() and ipc_data_write_deliver().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/ipc/ipc.h

    r5c786d1 r36d852c  
    185185 * - ARG3 - final size of data to be copied
    186186 */
    187 #define IPC_M_DATA_SEND         6
     187#define IPC_M_DATA_WRITE        6
     188
     189/** Receive data from another address space over IPC.
     190 * - ARG1 - destination virtual address in the source address space
     191 * - ARG2 - size of data to be received, may be cropped by the recipient
     192 *
     193 * on answer, the recipient must set:
     194 *
     195 * - ARG1 - source virtual address in the destination address space
     196 * - ARG2 - final size of data to be copied
     197 */
     198#define IPC_M_DATA_READ         7
    188199
    189200/* Well-known methods */
Note: See TracChangeset for help on using the changeset viewer.