Changeset 26e7d6d in mainline for abi/include/ipc/methods.h
- Timestamp:
- 2011-09-19T16:31:00Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a347a11
- Parents:
- 3842a955 (diff), 086290d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
abi/include/ipc/methods.h
r3842a955 r26e7d6d 33 33 */ 34 34 35 #ifndef KERN_IPC_METHODS_H_36 #define KERN_IPC_METHODS_H_35 #ifndef ABI_IPC_METHODS_H_ 36 #define ABI_IPC_METHODS_H_ 37 37 38 38 /* Well known phone descriptors */ … … 96 96 * error is sent back to caller. Otherwise 97 97 * the call is accepted and the response is sent back. 98 * - the hash of the client task is passed to userspace99 * (on the receiving side) as ARG4 of the call.100 98 * - the hash of the allocated phone is passed to userspace 101 99 * (on the receiving side) as ARG5 of the call. … … 171 169 #define IPC_M_DATA_READ 8 172 170 171 /** Authorize change of recipient's state in a third party task. 172 * - ARG1 - user protocol defined data 173 * - ARG2 - user protocol defined data 174 * - ARG3 - user protocol defined data 175 * - ARG5 - sender's phone to the third party task 176 * 177 * on EOK answer, the recipient must set: 178 * 179 * - ARG1 - recipient's phone to the third party task 180 */ 181 #define IPC_M_STATE_CHANGE_AUTHORIZE 9 182 173 183 /** Debug the recipient. 174 184 * - ARG1 - specifies the debug method (from udebug_method_t) … … 176 186 * 177 187 */ 178 #define IPC_M_DEBUG 9188 #define IPC_M_DEBUG 10 179 189 180 190 /** Last system IPC method */
Note:
See TracChangeset
for help on using the changeset viewer.