Changeset 6843a9c in mainline for uspace/lib/nic/include/nic_ev.h
- Timestamp:
- 2012-06-29T13:02:14Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 722912e
- Parents:
- ba72f2b (diff), 0bbd13e (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 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nic/include/nic_ev.h
rba72f2b r6843a9c 1 1 /* 2 * Copyright (c) 20 09 Lukas Mejdrech2 * Copyright (c) 2011 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libnet 29 /** 30 * @addtogroup libnic 30 31 * @{ 31 32 */ 33 /** 34 * @file 35 * @brief Prototypes of default DDF NIC interface methods implementations 36 */ 32 37 33 #ifndef LIBNET_PACKET_REMOTE_H_34 #define LIBNET_PACKET_REMOTE_H_38 #ifndef NIC_EV_H__ 39 #define NIC_EV_H__ 35 40 36 #include <net/packet.h> 41 #include <async.h> 42 #include <nic/nic.h> 37 43 #include <sys/types.h> 38 #include <async.h>39 44 40 extern int packet_translate_remote(async_sess_t *, packet_t **, packet_id_t); 41 extern packet_t *packet_get_4_remote(async_sess_t *, size_t, size_t, size_t, 42 size_t); 43 extern packet_t *packet_get_1_remote(async_sess_t *, size_t); 44 extern void pq_release_remote(async_sess_t *, packet_id_t); 45 extern int nic_ev_addr_changed(async_sess_t *, const nic_address_t *); 46 extern int nic_ev_device_state(async_sess_t *, sysarg_t); 47 extern int nic_ev_received(async_sess_t *, void *, size_t); 45 48 46 49 #endif
Note:
See TracChangeset
for help on using the changeset viewer.