Changeset 397 in vbox for trunk/src/VBox/HostDrivers/Support/testcase
- Timestamp:
- Jan 28, 2007 2:34:06 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 17968
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/testcase/tstInt.cpp
r1 r397 89 89 for (int i = cIterations; i > 0; i--) 90 90 { 91 rc = SUPCallVMMR0(&vm, 0xdeadbeef, NULL); 92 //RTPrintf("tstInt: SUPCallVMMR0 -> rc=%Vrc i=%d\n", rc, i); 91 rc = SUPCallVMMR0(&vm, VMMR0_DO_NOP, NULL); 92 if (rc != VINF_SUCCESS) 93 { 94 RTPrintf("tstInt: SUPCallVMMR0 -> rc=%Vrc i=%d Expected VINF_SUCCESS!\n", rc, i); 95 break;s 96 } 93 97 } 94 98 RTPrintf("tstInt: Performed SUPCallVMMR0 %d times (rc=%Vrc)\n", cIterations, rc);
Note:
See TracChangeset
for help on using the changeset viewer.