Changeset e0bc7fc in mainline
- Timestamp:
- 2007-11-18T14:35:32Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2e51969
- Parents:
- 6c383b0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
r6c383b0 re0bc7fc 38 38 /* Length of data being transfered with IPC call */ 39 39 /* - the uspace may not be able to utilize full length */ 40 #define IPC_CALL_LEN 440 #define IPC_CALL_LEN 6 41 41 42 42 /** Maximum active async calls per thread */ … … 83 83 #define IPC_SET_ARG2(data, val) ((data).args[2] = (val)) 84 84 #define IPC_SET_ARG3(data, val) ((data).args[3] = (val)) 85 #define IPC_SET_ARG4(data, val) ((data).args[4] = (val)) 86 #define IPC_SET_ARG5(data, val) ((data).args[5] = (val)) 85 87 86 88 #define IPC_GET_METHOD(data) ((data).args[0]) … … 90 92 #define IPC_GET_ARG2(data) ((data).args[2]) 91 93 #define IPC_GET_ARG3(data) ((data).args[3]) 94 #define IPC_GET_ARG4(data) ((data).args[4]) 95 #define IPC_GET_ARG5(data) ((data).args[5]) 92 96 93 97 /* Well known phone descriptors */
Note:
See TracChangeset
for help on using the changeset viewer.