- Timestamp:
- Oct 24, 2024 9:32:31 AM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 165492
- Location:
- trunk/src/VBox/ValidationKit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testboxscript/TestBoxHelper.cpp
r106061 r106650 744 744 * OS dependent ways (/proc/cpuinfo, sysctl, ...). Just fake it for now to get it running. */ 745 745 int cch = RTPrintf("%#x\n", 1); 746 return cch > 0 ? RTEXITCODE_SUCCESS : RTEXITCODE_FAILURE; 746 if (cch > 0) 747 return RTEXITCODE_SUCCESS; 747 748 #endif 748 749 return RTEXITCODE_FAILURE; -
trunk/src/VBox/ValidationKit/utils/nt/nttimesources.cpp
r106061 r106650 42 42 43 43 #include <iprt/asm.h> 44 #include <iprt/asm-amd64-x86.h> 44 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 45 # include <iprt/asm-amd64-x86.h> 46 #else 47 # include <iprt/asm-arm.h> 48 #endif 45 49 #include <iprt/errcore.h> 46 50 #include <iprt/string.h>
Note:
See TracChangeset
for help on using the changeset viewer.