Changeset 87b4baa in mainline for uspace/lib/net/il/arp_remote.c
- Timestamp:
- 2010-12-17T20:16:46Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 424558a
- Parents:
- 463e734 (diff), bbc74af7 (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 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/il/arp_remote.c
r463e734 r87b4baa 86 86 { 87 87 aid_t message_id; 88 ipcarg_t result;88 sysarg_t result; 89 89 90 90 message_id = async_send_2(arp_phone, NET_ARP_CLEAR_ADDRESS, 91 ( ipcarg_t) device_id, protocol, NULL);91 (sysarg_t) device_id, protocol, NULL); 92 92 measured_strings_send(arp_phone, address, 1); 93 93 async_wait_for(message_id, &result); … … 106 106 { 107 107 return (int) async_req_1_0(arp_phone, NET_ARP_CLEAR_DEVICE, 108 ( ipcarg_t) device_id);108 (sysarg_t) device_id); 109 109 } 110 110 … … 136 136 { 137 137 aid_t message_id; 138 ipcarg_t result;138 sysarg_t result; 139 139 140 140 message_id = async_send_3(arp_phone, NET_ARP_DEVICE, 141 ( ipcarg_t) device_id, protocol, netif, NULL);141 (sysarg_t) device_id, protocol, netif, NULL); 142 142 measured_strings_send(arp_phone, address, 1); 143 143 async_wait_for(message_id, &result);
Note:
See TracChangeset
for help on using the changeset viewer.