Changeset 92caadd in mainline for uspace/lib/usbhost
- Timestamp:
 - 2018-01-11T10:26:56Z (8 years ago)
 - Branches:
 - lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
 - Children:
 - 351113f
 - Parents:
 - 30fc56f
 - File:
 - 
      
- 1 edited
 
- 
          
  uspace/lib/usbhost/src/endpoint.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
uspace/lib/usbhost/src/endpoint.c
r30fc56f r92caadd 130 130 assert(fibril_mutex_is_locked(&ep->guard)); 131 131 132 while (ep->active_batch != NULL) 132 if (ep->active_batch != NULL) 133 fibril_condvar_wait_timeout(&ep->avail, &ep->guard, timeout); 134 135 while (timeout == 0 && ep->active_batch != NULL) 133 136 fibril_condvar_wait_timeout(&ep->avail, &ep->guard, timeout); 134 137 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  