Changeset 195 for trunk/src/corelib/thread/qmutex_os2.cpp
- Timestamp:
- Sep 26, 2009, 2:34:55 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/corelib/thread/qmutex_os2.cpp
r176 r195 68 68 bool QMutexPrivate::wait(int timeout) 69 69 { 70 APIRET rc = DosWaitEventSem(sem, timeout < 0 ? SEM_INDEFINITE_WAIT : timeout); 70 APIRET rc; 71 qDosNI(rc = DosWaitEventSem(sem, timeout < 0 ? SEM_INDEFINITE_WAIT : timeout)); 71 72 switch (rc) { 72 73 case NO_ERROR:
Note:
See TracChangeset
for help on using the changeset viewer.