Changeset 70270 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Dec 21, 2017 12:25:35 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-win.cpp
r70245 r70270 113 113 /** Top of the stack. */ 114 114 PDEVICE_OBJECT pNextLowerDriver; 115 /** Currently active Irp. */116 IRP *pCurrentIrp;117 115 /** Interrupt object pointer. */ 118 116 PKINTERRUPT pInterruptObject; … … 2025 2023 || !RTListIsEmpty(&pDevExt->Core.WakeUpList)) 2026 2024 { 2027 Log3Func(("Requesting DPC 2028 IoRequestDpc(pDevExt->pDeviceObject, pDevExt->pCurrentIrp, NULL); /** @todo r=bird: pCurrentIrp is not set anywhere. sigh. */2025 Log3Func(("Requesting DPC...\n")); 2026 IoRequestDpc(pDevExt->pDeviceObject, NULL /*pIrp*/, NULL /*pvContext*/); 2029 2027 } 2030 2028 }
Note:
See TracChangeset
for help on using the changeset viewer.