Changeset 68529 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Aug 25, 2017 8:39:33 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117690
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h
r67982 r68529 28 28 #define ___SUPDrvIOC_h___ 29 29 30 /*31 * Basic types.32 */33 30 #include <iprt/types.h> 34 31 #include <VBox/sup.h> -
trunk/src/VBox/HostDrivers/Support/win/SUPDrv-win.cpp
r67954 r68529 979 979 /** 980 980 * Clean up file handle entry point. 981 * 982 * This is called when the last handle reference is released, or something like 983 * that. In the case of IoGetDeviceObjectPointer, this is called as it closes 984 * the handle, however it will go on using the file object afterwards... 981 985 * 982 986 * @param pDevObj Device object. … … 1343 1347 { 1344 1348 NTSTATUS rcNt; 1345 u nsignedcbOut = 0;1349 uint32_t cbOut = 0; 1346 1350 int rc = 0; 1347 1351 Log2(("VBoxDrvNtDeviceControlSlow(%p,%p): ioctl=%#x pBuf=%p cbIn=%#x cbOut=%#x pSession=%p\n", … … 1380 1384 { 1381 1385 cbOut = pStack->Parameters.DeviceIoControl.OutputBufferLength; 1382 OSDBGPRINT(("VBoxDrv LinuxIOCtl: too much output! %#x > %#x; uCmd=%#x!\n",1386 OSDBGPRINT(("VBoxDrvNtDeviceControlSlow: too much output! %#x > %#x; uCmd=%#x!\n", 1383 1387 pHdr->cbOut, cbOut, pStack->Parameters.DeviceIoControl.IoControlCode)); 1384 1388 }
Note:
See TracChangeset
for help on using the changeset viewer.