Changeset f527f58 in mainline for uspace/lib/usbhost/include/usb/host/endpoint.h
- Timestamp:
- 2016-08-03T11:12:24Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 96ef672
- Parents:
- e657635
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/include/usb/host/endpoint.h
re657635 rf527f58 40 40 #include <fibril_synch.h> 41 41 #include <usb/usb.h> 42 #include <atomic.h> 42 43 43 44 /** Host controller side endpoint structure. */ 44 45 typedef struct endpoint { 46 /** Reference count. */ 47 atomic_t refcnt; 45 48 /** Part of linked list. */ 46 49 link_t link; … … 91 94 void endpoint_destroy(endpoint_t *instance); 92 95 96 void endpoint_add_ref(endpoint_t *instance); 97 void endpoint_del_ref(endpoint_t *instance); 98 93 99 void endpoint_set_hc_data(endpoint_t *instance, 94 100 void *data, int (*toggle_get)(void *), void (*toggle_set)(void *, int));
Note:
See TracChangeset
for help on using the changeset viewer.