Changeset 39091 in vbox for trunk/src/VBox/Runtime/r3/posix
- Timestamp:
- Oct 24, 2011 1:58:22 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 74523
- Location:
- trunk/src/VBox/Runtime/r3/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/semrw-posix.cpp
r30111 r39091 664 664 * Ask the lock validator. 665 665 */ 666 NOREF(fWannaHear); 666 667 return RTLockValidatorRecSharedIsOwner(&pThis->ValidatorRead, NIL_RTTHREAD); 667 668 #else -
trunk/src/VBox/Runtime/r3/posix/timer-posix.cpp
r33540 r39091 174 174 { 175 175 //AssertBreakpoint(); 176 NOREF(iSignal); 176 177 } 177 178 … … 180 181 * RT_TIMER_SIGNAL wait thread. 181 182 */ 182 static DECLCALLBACK(int) rttimerThread(RTTHREAD Thread, void *pvArg)183 static DECLCALLBACK(int) rttimerThread(RTTHREAD hThreadSelf, void *pvArg) 183 184 { 185 NOREF(hThreadSelf); NOREF(pvArg); 184 186 #ifndef IPRT_WITH_POSIX_TIMERS 185 PRTTIMER pTimer = (PRTTIMER) (void *)pvArg;187 PRTTIMER pTimer = (PRTTIMER)pvArg; 186 188 RTTIMER Timer = *pTimer; 187 189 Assert(pTimer->u32Magic == RTTIMER_MAGIC); … … 231 233 * The work loop. 232 234 */ 233 RTThreadUserSignal( Thread);235 RTThreadUserSignal(hThreadSelf); 234 236 235 237 #ifndef IPRT_WITH_POSIX_TIMERS … … 816 818 AssertPtrReturn(pTimer, VERR_INVALID_POINTER); 817 819 AssertReturn(pTimer->u32Magic == RTTIMER_MAGIC, VERR_INVALID_MAGIC); 820 NOREF(u64NanoInterval); 818 821 return VERR_NOT_SUPPORTED; 819 822 }
Note:
See TracChangeset
for help on using the changeset viewer.