Changes in uspace/lib/nic/include/nic.h [5a6cc679:205f1add] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nic/include/nic.h
r5a6cc679 r205f1add 57 57 nic_wv_id_t id; 58 58 nic_wv_type_t type; 59 constvoid *data;59 void *data; 60 60 size_t length; 61 61 struct nic_wol_virtue *next; … … 196 196 */ 197 197 typedef errno_t (*poll_mode_change_handler)(nic_t *, 198 nic_poll_mode_t, const struct time val*);198 nic_poll_mode_t, const struct timespec *); 199 199 200 200 /** … … 240 240 extern void nic_set_tx_busy(nic_t *, int); 241 241 extern errno_t nic_report_address(nic_t *, const nic_address_t *); 242 extern errno_t nic_report_poll_mode(nic_t *, nic_poll_mode_t, struct time val*);242 extern errno_t nic_report_poll_mode(nic_t *, nic_poll_mode_t, struct timespec *); 243 243 extern void nic_query_address(nic_t *, nic_address_t *); 244 244 extern void nic_received_frame(nic_t *, nic_frame_t *); 245 245 extern void nic_received_frame_list(nic_t *, nic_frame_list_t *); 246 extern nic_poll_mode_t nic_query_poll_mode(nic_t *, struct time val*);246 extern nic_poll_mode_t nic_query_poll_mode(nic_t *, struct timespec *); 247 247 248 248 /* Statistics updates */
Note:
See TracChangeset
for help on using the changeset viewer.