Changeset 5a6cc679 in mainline for uspace/lib/usbdev/include/usb/dev/poll.h
- Timestamp:
- 2018-01-31T02:21:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/include/usb/dev/poll.h
r132ab5d1 r5a6cc679 118 118 * @return Whether to continue in polling. 119 119 */ 120 bool (*on_error)(usb_device_t *dev, int err_code, void *arg);120 bool (*on_error)(usb_device_t *dev, errno_t err_code, void *arg); 121 121 122 122 … … 139 139 } usb_polling_t; 140 140 141 int usb_polling_init(usb_polling_t *);141 errno_t usb_polling_init(usb_polling_t *); 142 142 void usb_polling_fini(usb_polling_t *); 143 143 144 int usb_polling_start(usb_polling_t *);145 int usb_polling_join(usb_polling_t *);144 errno_t usb_polling_start(usb_polling_t *); 145 errno_t usb_polling_join(usb_polling_t *); 146 146 147 147 #endif
Note:
See TracChangeset
for help on using the changeset viewer.