adb: switch from system_clock to steady_clock.
Test: treehugger Change-Id: I10b884dc159a5ba624bc0f7ad53a402bffb14293
This commit is contained in:
parent
b3fc1b7441
commit
63e8d9815f
1 changed files with 1 additions and 1 deletions
|
@ -324,7 +324,7 @@ static int usb_bulk_write(usb_handle* h, const void* data, int len) {
|
|||
|
||||
h->urb_out_busy = true;
|
||||
while (true) {
|
||||
auto now = std::chrono::system_clock::now();
|
||||
auto now = std::chrono::steady_clock::now();
|
||||
if (h->cv.wait_until(lock, now + 5s) == std::cv_status::timeout || h->dead) {
|
||||
// TODO: call USBDEVFS_DISCARDURB?
|
||||
errno = ETIMEDOUT;
|
||||
|
|
Loading…
Reference in a new issue