Changeset 195 for trunk/src/corelib/thread/qwaitcondition_os2.cpp
- Timestamp:
- Sep 26, 2009, 2:34:55 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/corelib/thread/qwaitcondition_os2.cpp
r66 r195 118 118 // wait for the event 119 119 bool ret = false; 120 APIRET rc = DosWaitEventSem(wce->event, time); 120 APIRET rc; 121 qDosNI(rc = DosWaitEventSem(wce->event, time)); 121 122 if (rc == NO_ERROR) 122 123 ret = true;
Note:
See TracChangeset
for help on using the changeset viewer.