Changeset 39091 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Oct 24, 2011 1:58:22 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 74523
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/alloc-ef.cpp
r39083 r39091 54 54 /** Tree tracking the allocations. */ 55 55 static AVLPVTREE g_BlocksTree; 56 # ifdef RTALLOC_EFENCE_FREE_DELAYED56 # ifdef RTALLOC_EFENCE_FREE_DELAYED 57 57 /** Tail of the delayed blocks. */ 58 58 static volatile PRTMEMBLOCK g_pBlocksDelayHead; … … 61 61 /** Number of bytes in the delay list (includes fences). */ 62 62 static volatile size_t g_cbBlocksDelay; 63 # endif64 #endif 63 # endif /* RTALLOC_EFENCE_FREE_DELAYED */ 64 #endif /* RTALLOC_EFENCE_TRACE */ 65 65 /** Array of pointers free watches for. */ 66 66 void *gapvRTMemFreeWatch[4] = {NULL, NULL, NULL, NULL}; … … 217 217 } 218 218 219 220 #ifdef RTALLOC_EFENCE_FREE_DELAYED 219 # ifdef RTALLOC_EFENCE_FREE_DELAYED 220 221 221 /** 222 222 * Insert a delayed block. … … 267 267 } 268 268 269 270 #endif /* DELAY */ 269 # endif /* RTALLOC_EFENCE_FREE_DELAYED */ 271 270 272 271 #endif /* RTALLOC_EFENCE_TRACE */ -
trunk/src/VBox/Runtime/r3/linux/fileaio-linux.cpp
r37596 r39091 544 544 { 545 545 /* Nothing to do. */ 546 NOREF(hAioCtx); NOREF(hFile); 546 547 return VINF_SUCCESS; 547 548 } -
trunk/src/VBox/Runtime/r3/linux/sched-linux.cpp
r36912 r39091 406 406 static void *rtSchedNativeProberThread(void *pvUser) 407 407 { 408 NOREF(pvUser); 408 409 SAVEDPRIORITY SavedPriority; 409 410 rtSchedNativeSave(&SavedPriority); -
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.