Changeset 21188 in vbox for trunk/src/VBox/VMM/PDMDevice.cpp
- Timestamp:
- Jul 3, 2009 9:57:07 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49488
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMDevice.cpp
r14299 r21188 786 786 * @param iLun The Logical Unit to obtain the interface of. 787 787 * @param ppBase Where to store the base interface pointer. Optional. 788 * @param fFlags Flags, combination of the PDMDEVATT_FLAGS_* \#defines. 788 789 * @thread EMT 789 790 */ 790 VMMR3DECL(int) PDMR3DeviceAttach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, PPDMIBASE *ppBase )791 VMMR3DECL(int) PDMR3DeviceAttach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, PPDMIBASE *ppBase, uint32_t fFlags) 791 792 { 792 793 VM_ASSERT_EMT(pVM); … … 809 810 if (!pLun->pTop) 810 811 { 811 rc = pDevIns->pDevReg->pfnAttach(pDevIns, iLun );812 rc = pDevIns->pDevReg->pfnAttach(pDevIns, iLun, fFlags); 812 813 813 814 } … … 842 843 * @param iInstance Device instance. 843 844 * @param iLun The Logical Unit to obtain the interface of. 845 * @param fFlags Flags, combination of the PDMDEVATT_FLAGS_* \#defines. 844 846 * @thread EMT 845 847 */ 846 VMMR3DECL(int) PDMR3DeviceDetach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun )848 VMMR3DECL(int) PDMR3DeviceDetach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, uint32_t fFlags) 847 849 { 848 850 VM_ASSERT_EMT(pVM); … … 864 866 { 865 867 if (pLun->pTop) 866 rc = pdmR3DrvDetach(pLun->pTop );868 rc = pdmR3DrvDetach(pLun->pTop, fFlags); 867 869 else 868 870 rc = VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN;
Note:
See TracChangeset
for help on using the changeset viewer.