Changeset 68550 in vbox for trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
- Timestamp:
- Aug 31, 2017 12:09:41 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117767
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
r62849 r68550 1699 1699 static DECLCALLBACK(RTEXITCODE) handleDpc(int argc, char *argv[]) 1700 1700 { 1701 RT_NOREF(argc, argv); 1702 int rc = VERR_NOT_IMPLEMENTED; 1701 1703 # ifndef VBOX_CONTROL_TEST 1702 int rc;1703 1704 for (int i = 0; i < 30; i++) 1704 1705 { 1705 rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_DPC_LATENCY_CHECKER, NULL, 0); 1706 if (RT_FAILURE(rc)) 1706 VBGLREQHDR Req; 1707 VBGLREQHDR_INIT(&Req, DPC_LATENCY_CHECKER); 1708 rc = vbglR3DoIOCtl(VBGL_IOCTL_DPC_LATENCY_CHECKER, &Req, sizeof(Req)); 1709 if (RT_SUCCESS(rc)) 1710 RTPrintf("%d\n", i); 1711 else 1707 1712 break; 1708 RTPrintf("%d\n", i); 1709 } 1710 # else 1711 int rc = VERR_NOT_IMPLEMENTED; 1713 } 1712 1714 # endif 1713 1715 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.