Changeset 33393 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Oct 24, 2010 4:17:00 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 66982
- Location:
- trunk/src/VBox/Runtime/r3/os2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/os2/sems-os2.cpp
r33269 r33393 345 345 } 346 346 347 RTDECL(int) RTSemMutexRequestNoResumeDebug(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies, RTHCUINTPTR uId, RT_SRC_POS_DECL) 348 { 349 // RTLOCKVALSRCPOS SrcPos = RTLOCKVALSRCPOS_INIT_DEBUG_API(); 350 // return rtSemMutexRequestNoResume(hMutexSem, cMillies, &SrcPos); 351 return RTSemMutexRequestNoResume(hMutexSem, cMillies); 352 } 353 354 347 355 RTDECL(int) RTSemMutexRelease(RTSEMMUTEX hMutexSem) 348 356 { … … 358 366 359 367 360 RTDECL(bool) RTSemMutexIsOwned(RTSEMMUTEX hMutexSem) ;368 RTDECL(bool) RTSemMutexIsOwned(RTSEMMUTEX hMutexSem) 361 369 { 362 370 /* -
trunk/src/VBox/Runtime/r3/os2/thread-os2.cpp
r32914 r33393 45 45 #include <iprt/assert.h> 46 46 #include <iprt/alloc.h> 47 #include <iprt/asm .h>47 #include <iprt/asm-amd64-x86.h> 48 48 #include <iprt/string.h> 49 49 #include <iprt/err.h>
Note:
See TracChangeset
for help on using the changeset viewer.