VirtualBox

Changeset 21188 in vbox for trunk/src/VBox/VMM/PDMDevice.cpp


Ignore:
Timestamp:
Jul 3, 2009 9:57:07 AM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
49488
Message:

Add hotplug flag to PDMR3DeviceAttach/Detach

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/PDMDevice.cpp

    r14299 r21188  
    786786 * @param   iLun            The Logical Unit to obtain the interface of.
    787787 * @param   ppBase          Where to store the base interface pointer. Optional.
     788 * @param   fFlags          Flags, combination of the PDMDEVATT_FLAGS_* \#defines.
    788789 * @thread  EMT
    789790 */
    790 VMMR3DECL(int) PDMR3DeviceAttach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, PPDMIBASE *ppBase)
     791VMMR3DECL(int) PDMR3DeviceAttach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, PPDMIBASE *ppBase, uint32_t fFlags)
    791792{
    792793    VM_ASSERT_EMT(pVM);
     
    809810            if (!pLun->pTop)
    810811            {
    811                 rc = pDevIns->pDevReg->pfnAttach(pDevIns, iLun);
     812                rc = pDevIns->pDevReg->pfnAttach(pDevIns, iLun, fFlags);
    812813
    813814            }
     
    842843 * @param   iInstance       Device instance.
    843844 * @param   iLun            The Logical Unit to obtain the interface of.
     845 * @param   fFlags          Flags, combination of the PDMDEVATT_FLAGS_* \#defines.
    844846 * @thread  EMT
    845847 */
    846 VMMR3DECL(int) PDMR3DeviceDetach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun)
     848VMMR3DECL(int) PDMR3DeviceDetach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, uint32_t fFlags)
    847849{
    848850    VM_ASSERT_EMT(pVM);
     
    864866        {
    865867            if (pLun->pTop)
    866                 rc = pdmR3DrvDetach(pLun->pTop);
     868                rc = pdmR3DrvDetach(pLun->pTop, fFlags);
    867869            else
    868870                rc = VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette