Changeset 7639 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Mar 28, 2008 6:54:28 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29145
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/linux/semevent-linux.cpp
r6747 r7639 207 207 */ 208 208 struct timespec ts; 209 struct timespec *pTimeout = 0;209 struct timespec *pTimeout = NULL; 210 210 if (cMillies != RT_INDEFINITE_WAIT) 211 211 { … … 280 280 int rc = rtSemEventWait(EventSem, cMillies, true); 281 281 Assert(rc != VERR_INTERRUPTED); 282 Assert(rc != VERR_TIMEOUT || cMillies != RT_INDEFINITE_WAIT); 282 283 return rc; 283 284 }
Note:
See TracChangeset
for help on using the changeset viewer.