Changeset 25724 in vbox for trunk/src/VBox/Runtime/r3/posix/semmutex-posix.cpp
- Timestamp:
- Jan 11, 2010 2:45:34 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56467
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/semmutex-posix.cpp
r25721 r25724 180 180 181 181 182 DECL_FORCE_INLINE(int) rtSemMutexRequest(RTSEMMUTEX hMutexSem, unsignedcMillies, PCRTLOCKVALSRCPOS pSrcPos)182 DECL_FORCE_INLINE(int) rtSemMutexRequest(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies, PCRTLOCKVALSRCPOS pSrcPos) 183 183 { 184 184 /* … … 281 281 282 282 #undef RTSemMutexRequest 283 RTDECL(int) RTSemMutexRequest(RTSEMMUTEX hMutexSem, unsignedcMillies)283 RTDECL(int) RTSemMutexRequest(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 284 284 { 285 285 #ifndef RTSEMMUTEX_STRICT … … 292 292 293 293 294 RTDECL(int) RTSemMutexRequestDebug(RTSEMMUTEX hMutexSem, unsignedcMillies, RTHCUINTPTR uId, RT_SRC_POS_DECL)294 RTDECL(int) RTSemMutexRequestDebug(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies, RTHCUINTPTR uId, RT_SRC_POS_DECL) 295 295 { 296 296 RTLOCKVALSRCPOS SrcPos = RTLOCKVALSRCPOS_INIT_DEBUG_API(); … … 300 300 301 301 #undef RTSemMutexRequestNoResume 302 RTDECL(int) RTSemMutexRequestNoResume(RTSEMMUTEX hMutexSem, unsignedcMillies)302 RTDECL(int) RTSemMutexRequestNoResume(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 303 303 { 304 304 /* (EINTR isn't returned by the wait functions we're using.) */ … … 312 312 313 313 314 RTDECL(int) RTSemMutexRequestNoResumeDebug(RTSEMMUTEX hMutexSem, unsignedcMillies, RTHCUINTPTR uId, RT_SRC_POS_DECL)314 RTDECL(int) RTSemMutexRequestNoResumeDebug(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies, RTHCUINTPTR uId, RT_SRC_POS_DECL) 315 315 { 316 316 RTLOCKVALSRCPOS SrcPos = RTLOCKVALSRCPOS_INIT_DEBUG_API();
Note:
See TracChangeset
for help on using the changeset viewer.