Changeset 99775 in vbox for trunk/src/VBox/VMM/testcase/tstVMMR0CallHost-1.cpp
- Timestamp:
- May 12, 2023 12:21:58 PM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstVMMR0CallHost-1.cpp
r98103 r99775 62 62 63 63 64 int foo(int i, int iZero, int iMinusOne)64 static int foo(int i, int iZero, int iMinusOne) 65 65 { 66 66 NOREF(iZero); … … 95 95 96 96 97 DECLCALLBACK(int) tst2(intptr_t i, intptr_t i2)97 static DECLCALLBACK(int) tst2(intptr_t i, intptr_t i2) 98 98 { 99 99 RTTESTI_CHECK_MSG_RET(i >= 0 && i <= 8192, ("i=%d is out of range [0..8192]\n", i), 1); … … 106 106 107 107 108 DECLCALLBACK(DECL_NO_INLINE(RT_NOTHING, int)) stackRandom(PVMMR0JMPBUF pJmpBuf, PFNVMMR0SETJMP pfn, PVM pVM, PVMCPU pVCpu)108 static DECLCALLBACK(DECL_NO_INLINE(RT_NOTHING, int)) stackRandom(PVMMR0JMPBUF pJmpBuf, PFNVMMR0SETJMP pfn, PVM pVM, PVMCPU pVCpu) 109 109 { 110 110 #ifdef RT_ARCH_AMD64 … … 121 121 122 122 123 void tst(int iFrom, int iTo, int iInc)123 static void tst(int iFrom, int iTo, int iInc) 124 124 { 125 125 RT_BZERO(&g_Jmp, RT_UOFFSETOF(VMMR0JMPBUF, cbStackBuf));
Note:
See TracChangeset
for help on using the changeset viewer.