Changes in abi/include/abi/ipc/ipc.h [706b4de:addbce4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abi/include/abi/ipc/ipc.h
r706b4de raddbce4 38 38 /** Length of data being transfered with IPC call 39 39 * 40 * The uspace may not be able to utilize full length40 * The uspace may not be able to utilize the full length 41 41 * 42 42 */ … … 49 49 50 50 /** This is answer to a call */ 51 #define IPC_CALL_ANSWERED (1 << 0)51 #define IPC_CALL_ANSWERED (1 << 0) 52 52 53 53 /** Answer will not be passed to userspace, will be discarded */ … … 55 55 56 56 /** Call was forwarded */ 57 #define IPC_CALL_FORWARDED (1 << 2)57 #define IPC_CALL_FORWARDED (1 << 2) 58 58 59 59 /** Interrupt notification */ 60 #define IPC_CALL_NOTIF (1 << 3)60 #define IPC_CALL_NOTIF (1 << 3) 61 61 62 62 /** … … 65 65 */ 66 66 #define DATA_XFER_LIMIT (64 * 1024) 67 68 69 /** Bits used in call hashes.70 *71 * The addresses are aligned at least to 4 that is why we can use the 2 least72 * significant bits of the call address.73 *74 */75 76 /** Type of this call is 'answer' */77 #define IPC_CALLID_ANSWERED 178 79 /** Type of this call is 'notification' */80 #define IPC_CALLID_NOTIFICATION 281 82 /* Return values from sys_ipc_call_async(). */83 #define IPC_CALLRET_FATAL -184 67 85 68 /* Macros for manipulating calling data */
Note:
See TracChangeset
for help on using the changeset viewer.