Changeset 62571 in vbox for trunk/src/VBox/Runtime/testcase/tstRTSemXRoads.cpp
- Timestamp:
- Jul 26, 2016 3:58:26 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTSemXRoads.cpp
r62477 r62571 53 53 static int tstTrafficThreadCommon(uintptr_t iThread, bool fNS) 54 54 { 55 RT_NOREF_PV(iThread); 56 55 57 for (uint32_t iLoop = 0; RTTimeMilliTS() - g_u64StartMilliTS < g_cSecs*1000; iLoop++) 56 58 { … … 80 82 static DECLCALLBACK(int) tstTrafficNSThread(RTTHREAD hSelf, void *pvUser) 81 83 { 84 RT_NOREF_PV(hSelf); 85 82 86 uintptr_t iThread = (uintptr_t)pvUser; 83 87 return tstTrafficThreadCommon(iThread, true); … … 87 91 static DECLCALLBACK(int) tstTrafficEWThread(RTTHREAD hSelf, void *pvUser) 88 92 { 93 RT_NOREF_PV(hSelf); 94 89 95 uintptr_t iThread = (uintptr_t)pvUser; 90 96 return tstTrafficThreadCommon(iThread, false);
Note:
See TracChangeset
for help on using the changeset viewer.