Changeset 41811af in mainline for uspace/lib/net/il/arp_remote.c
- Timestamp:
- 2011-06-10T10:14:26Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ab547063
- Parents:
- 9536e6e (diff), 390d80d (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
r9536e6e r41811af 40 40 41 41 #include <async.h> 42 #include <async_obsolete.h> 42 43 #include <errno.h> 43 44 #include <ipc/services.h> … … 68 69 int arp_clean_cache_req(int arp_phone) 69 70 { 70 return (int) async_ req_0_0(arp_phone, NET_ARP_CLEAN_CACHE);71 return (int) async_obsolete_req_0_0(arp_phone, NET_ARP_CLEAN_CACHE); 71 72 } 72 73 … … 87 88 sysarg_t result; 88 89 89 message_id = async_ send_2(arp_phone, NET_ARP_CLEAR_ADDRESS,90 message_id = async_obsolete_send_2(arp_phone, NET_ARP_CLEAR_ADDRESS, 90 91 (sysarg_t) device_id, protocol, NULL); 91 92 measured_strings_send(arp_phone, address, 1); … … 104 105 int arp_clear_device_req(int arp_phone, device_id_t device_id) 105 106 { 106 return (int) async_ req_1_0(arp_phone, NET_ARP_CLEAR_DEVICE,107 return (int) async_obsolete_req_1_0(arp_phone, NET_ARP_CLEAR_DEVICE, 107 108 (sysarg_t) device_id); 108 109 } … … 137 138 sysarg_t result; 138 139 139 message_id = async_ send_3(arp_phone, NET_ARP_DEVICE,140 message_id = async_obsolete_send_3(arp_phone, NET_ARP_DEVICE, 140 141 (sysarg_t) device_id, protocol, netif, NULL); 141 142 measured_strings_send(arp_phone, address, 1);
Note:
See TracChangeset
for help on using the changeset viewer.