Changeset 56284 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jun 9, 2015 10:46:34 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100865
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/Makefile.kmk
r56085 r56284 409 409 if defined(VBOX_WITH_RAW_MODE) && !defined(VBOX_ONLY_EXTPACKS) 410 410 # 411 # VMMRC. gc411 # VMMRC.rc 412 412 # 413 413 SYSMODS += VMMRC 414 414 VMMRC_TEMPLATE = VBoxRc 415 VMMRC_NAME = VMMGC 416 VMMRC_SYSSUFF = .gc 415 VMMRC_NAME = VMMRC 417 416 418 417 VMMRC_DEFS = IN_VMM_RC IN_RT_RC IN_DIS DIS_CORE_ONLY VBOX_WITH_RAW_MODE VBOX_WITH_RAW_MODE_NOT_R0 IN_SUP_RC \ -
trunk/src/VBox/VMM/VMMR3/PDMLdr.cpp
r56050 r56284 897 897 * @returns VBox status code. 898 898 * @param pVM Pointer to the VM. 899 * @param pszModule Module name. If NULL the main R0 module (VMMGC.gc) is assumes. 900 * @param pszSymbol Symbol name. If it's value is less than 64k it's treated like a 901 * ordinal value rather than a string pointer. 899 * @param pszModule Module name. If NULL the main R0 module (VMMRC.rc) 900 * is assumes. 901 * @param pszSymbol Symbol name. If it's value is less than 64k it's 902 * treated like a ordinal value rather than a string 903 * pointer. 902 904 * @param pRCPtrValue Where to store the symbol value. 903 905 */ … … 1593 1595 if (!fNullRun) 1594 1596 pModule = pdmR3LdrFindModule(pVM->pUVM, 1595 pszModule ? pszModule : fRing0 ? "VMMR0.r0" : "VMM GC.gc",1597 pszModule ? pszModule : fRing0 ? "VMMR0.r0" : "VMMRC.rc", 1596 1598 fRing0 ? PDMMOD_TYPE_R0 : PDMMOD_TYPE_RC, 1597 1599 true /*fLazy*/, pszSearchPath); -
trunk/src/VBox/VMM/VMMRC/VMMRC.def
r55980 r56284 15 15 ; 16 16 17 LIBRARY VMM GC.gc17 LIBRARY VMMRC.rc 18 18 EXPORTS 19 19 ; data -
trunk/src/VBox/VMM/testcase/Makefile.kmk
r55290 r56284 421 421 tstMicroRC_LIBS += \ 422 422 $(PATH_STAGE_LIB)/VMMRCBuiltin$(VBOX_SUFF_LIB) \ 423 $(LIB_VMM GC)423 $(LIB_VMMRC) 424 424 endif 425 425 tstMicroRC_SOURCES.win = tstMicroRC.def
Note:
See TracChangeset
for help on using the changeset viewer.