Changeset 27d293a in mainline for kernel/generic/include/ipc/ipc.h


Ignore:
Timestamp:
2007-12-31T16:46:43Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
215e375
Parents:
3115355
Message:

Rename IPC_M_AS_AREA_SEND to IPC_M_SHARE_OUT. Rename IPC_M_AS_AREA_RECV to
IPC_M_SHARE_IN. Provide user-friendly wrappers for these methods so that even
dummies can get it right. Some applications using simpler protocols still use
these methods directly.

File:
1 edited

Legend:

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

    r3115355 r27d293a  
    160160 * - ARG1 - dst as_area base adress
    161161 */
    162 #define IPC_M_AS_AREA_SEND      4       
     162#define IPC_M_SHARE_OUT         4       
    163163
    164164/** Receive as_area over IPC.
     
    172172 * - ARG2 - flags that will be used for sharing
    173173 */
    174 #define IPC_M_AS_AREA_RECV      5       
     174#define IPC_M_SHARE_IN          5       
    175175
    176176/** Send data to another address space over IPC.
Note: See TracChangeset for help on using the changeset viewer.