- Timestamp:
- May 27, 2009 8:52:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/freebsd/semevent-r0drv-freebsd.c
r19972 r20107 170 170 tv.tv_usec = (cMillies % 1000) * 1000; 171 171 } 172 else173 {174 tv.tv_sec = 0;175 tv.tv_usec = 0;176 }177 172 178 173 ASMAtomicIncU32(&pEventInt->cWaiters); … … 182 177 fInterruptible ? PZERO | PCATCH : PZERO, 183 178 "iprtev", 184 tvtohz(&tv)); 179 cMillis == RT_INDEFINITE_WAIT 180 ? 0 181 : tvtohz(&tv)); 185 182 mtx_lock_spin(&pEventInt->Mtx); 186 183
Note:
See TracChangeset
for help on using the changeset viewer.