Changeset cf28ffd3 in mainline for uspace/lib
- Timestamp:
- 2024-10-28T22:19:45Z (12 months ago)
- Children:
- 1cfa162
- Parents:
- d84773a
- Location:
- uspace/lib/device
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/device/include/hr.h
rd84773a rcf28ffd3 97 97 98 98 extern errno_t hr_create(hr_t *, hr_config_t *, bool); 99 extern errno_t hr_stop(const char * );99 extern errno_t hr_stop(const char *, long); 100 100 extern errno_t hr_print_status(void); 101 101 -
uspace/lib/device/src/hr.c
rd84773a rcf28ffd3 169 169 } 170 170 171 errno_t hr_stop(const char *devname )171 errno_t hr_stop(const char *devname, long extent) 172 172 { 173 173 hr_t *hr; … … 189 189 goto error; 190 190 } 191 rc = async_req_ 1_0(exch, HR_STOP, svc_id);191 rc = async_req_2_0(exch, HR_STOP, svc_id, extent); 192 192 async_exchange_end(exch); 193 193
Note:
See TracChangeset
for help on using the changeset viewer.