Changeset 85658 in vbox
- Timestamp:
- Aug 10, 2020 10:34:34 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139784
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMDevice.cpp
r84765 r85658 785 785 Log(("PDM: Successfully loaded device module %s (%s).\n", pszName, pszFilename)); 786 786 else 787 { 788 VMR3SetError(pVM->pUVM, rc, RT_SRC_POS, "VBoxDevicesRegister failed with rc=%Rrc for module %s (%s)", 789 rc, pszName, pszFilename); 787 790 AssertMsgFailed(("VBoxDevicesRegister failed with rc=%Rrc for module %s (%s)\n", rc, pszName, pszFilename)); 791 } 788 792 } 789 793 else … … 792 796 if (rc == VERR_SYMBOL_NOT_FOUND) 793 797 rc = VERR_PDM_NO_REGISTRATION_EXPORT; 798 VMR3SetError(pVM->pUVM, rc, RT_SRC_POS, "Failed to locate 'VBoxDevicesRegister' in %s (%s) rc=%Rrc", 799 pszName, pszFilename, rc); 794 800 } 795 801 }
Note:
See TracChangeset
for help on using the changeset viewer.