Changes in uspace/lib/c/include/ipc/il.h [64d2b10:522253c1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/il.h
r64d2b10 r522253c1 33 33 /** @file 34 34 * Internetwork layer modules messages. 35 * @see il_ remote.h35 * @see il_interface.h 36 36 * @see ip_interface.h 37 37 */ … … 40 40 #define LIBC_IL_MESSAGES_H_ 41 41 42 #include <ipc/ipc.h> 42 43 #include <ipc/net.h> 43 44 44 45 /** Internet layer modules messages. */ 45 46 typedef enum { 47 /** New device message. 48 * @see ip_device_req() 49 */ 50 NET_IL_DEVICE = NET_IL_FIRST, 46 51 /** Device state changed message. 47 52 * @see il_device_state_msg() 48 53 */ 49 NET_IL_DEVICE_STATE = NET_IL_FIRST, 50 54 NET_IL_DEVICE_STATE, 51 55 /** Device MTU changed message. 52 56 * @see il_mtu_changed_msg() 53 57 */ 54 58 NET_IL_MTU_CHANGED, 55 59 /** Packet size message. 60 * @see il_packet_size_req() 61 */ 62 NET_IL_PACKET_SPACE, 56 63 /** Packet received message. 57 64 * @see il_received_msg() 58 65 */ 59 NET_IL_RECEIVED 66 NET_IL_RECEIVED, 67 /** Packet send message. 68 * @see il_send_msg() 69 */ 70 NET_IL_SEND 60 71 } il_messages; 61 72 … … 64 75 65 76 /** Return the protocol number message parameter. 66 * 67 * @param[in] call Message call structure. 68 * 77 * @param[in] call The message call structure. 69 78 */ 70 #define IL_GET_PROTO(call) ((int) IPC_GET_ARG1(call))79 #define IL_GET_PROTO(call) (int) IPC_GET_ARG1(*call) 71 80 72 81 /** Return the registering service message parameter. 73 * 74 * @param[in] call Message call structure. 75 * 82 * @param[in] call The message call structure. 76 83 */ 77 #define IL_GET_SERVICE(call) ((services_t) IPC_GET_ARG2(call))84 #define IL_GET_SERVICE(call) (services_t) IPC_GET_ARG2(*call) 78 85 79 86 /*@}*/
Note:
See TracChangeset
for help on using the changeset viewer.