Changeset 73a5857 in mainline for uspace/lib/usbhost/include/usb/host/utility.h
- Timestamp:
- 2018-01-31T23:31:05Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 53fdf8c
- Parents:
- 2ca5a198
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/include/usb/host/utility.h
r2ca5a198 r73a5857 54 54 int hc_device_explore(device_t *); 55 55 56 /** Joinable fibril */ 57 58 typedef int (*fibril_worker_t)(void *); 59 typedef struct joinable_fibril joinable_fibril_t; 60 61 joinable_fibril_t *joinable_fibril_create(fibril_worker_t, void *); 62 void joinable_fibril_start(joinable_fibril_t *); 63 void joinable_fibril_join(joinable_fibril_t *); 64 void joinable_fibril_destroy(joinable_fibril_t *); 65 66 56 67 #endif 57 68 /**
Note:
See TracChangeset
for help on using the changeset viewer.