Changeset 46d4d9f in mainline for uspace/lib/net/netif/netif_local.c
- Timestamp:
- 2010-11-20T17:04:59Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dd5046dd
- Parents:
- fdbc3ff
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/netif/netif_local.c
rfdbc3ff r46d4d9f 92 92 */ 93 93 int netif_send_msg_local(int netif_phone, device_id_t device_id, 94 packet_t packet, services_t sender)94 packet_t *packet, services_t sender) 95 95 { 96 96 fibril_rwlock_write_lock(&netif_globals.lock); … … 307 307 * 308 308 */ 309 packet_t netif_packet_get_1(size_t content)309 packet_t *netif_packet_get_1(size_t content) 310 310 { 311 311 return packet_get_1_remote(netif_globals.net_phone, content); … … 361 361 size_t length; 362 362 device_stats_t stats; 363 packet_t packet;363 packet_t *packet; 364 364 measured_string_t address; 365 365 int rc;
Note:
See TracChangeset
for help on using the changeset viewer.