Changeset 59348 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jan 14, 2016 2:48:08 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMDevHlp.cpp
r58126 r59348 5 5 6 6 /* 7 * Copyright (C) 2006-201 5Oracle Corporation7 * Copyright (C) 2006-2016 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1630 1630 rc = VERR_PDM_NO_ATTACHED_DRIVER; 1631 1631 1632 1633 1632 LogFlow(("pdmR3DevHlp_DriverAttach: caller='%s'/%d: returns %Rrc\n", pDevIns->pReg->szName, pDevIns->iInstance, rc)); 1633 return rc; 1634 } 1635 1636 1637 /** @interface_method_impl{PDMDEVHLPR3,pfnDriverDetach} */ 1638 static DECLCALLBACK(int) pdmR3DevHlp_DriverDetach(PPDMDEVINS pDevIns, PPDMDRVINS pDrvIns, uint32_t fFlags) 1639 { 1640 PDMDEV_ASSERT_DEVINS(pDevIns); 1641 LogFlow(("pdmR3DevHlp_DriverDetach: caller='%s'/%d: pDrvIns=%p\n", 1642 pDevIns->pReg->szName, pDevIns->iInstance, pDrvIns)); 1643 1644 PVM pVM = pDevIns->Internal.s.pVMR3; 1645 VM_ASSERT_EMT(pVM); 1646 1647 int rc = pdmR3DrvDetach(pDrvIns, fFlags); 1648 1649 LogFlow(("pdmR3DevHlp_DriverDetach: caller='%s'/%d: returns %Rrc\n", pDevIns->pReg->szName, pDevIns->iInstance, rc)); 1634 1650 return rc; 1635 1651 } … … 3523 3539 pdmR3DevHlp_ISASetIrqNoWait, 3524 3540 pdmR3DevHlp_DriverAttach, 3541 pdmR3DevHlp_DriverDetach, 3525 3542 pdmR3DevHlp_QueueCreate, 3526 3543 pdmR3DevHlp_CritSectInit, … … 3774 3791 pdmR3DevHlp_ISASetIrqNoWait, 3775 3792 pdmR3DevHlp_DriverAttach, 3793 pdmR3DevHlp_DriverDetach, 3776 3794 pdmR3DevHlp_QueueCreate, 3777 3795 pdmR3DevHlp_CritSectInit,
Note:
See TracChangeset
for help on using the changeset viewer.