- Timestamp:
- May 24, 2015 3:52:28 PM (10 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CSAM.cpp
r56052 r56054 2169 2169 * calling EMT. 2170 2170 * @param GCPtr The virtual address the guest has changed. 2171 * 2172 * @remarks Not currently called by PGM. It was actually only called for a month 2173 * back in 2006... 2171 2174 */ 2172 2175 static DECLCALLBACK(int) csamR3CodePageInvalidate(PVM pVM, PVMCPU pVCpu, RTGCPTR GCPtr, void *pvUser) -
trunk/src/VBox/VMM/VMMR3/PGMHandler.cpp
r56052 r56054 314 314 * automatically relocated or not. 315 315 * @param pfnInvalidateR3 Pointer to the ring-3 invalidation handler callback. 316 * Warning! This callback stopped working in VBox v1.2! 316 317 * @param pfnHandlerR3 Pointer to the ring-3 handler callback. 317 318 * @param pfnHandlerRC Pointer to the raw-mode context handler callback. … … 339 340 AssertPtrNullReturn(pfnInvalidateR3, VERR_INVALID_POINTER); 340 341 AssertPtrReturn(pfnHandlerR3, VERR_INVALID_POINTER); 341 Assert PtrReturn(pfnHandlerRC, VERR_INVALID_POINTER);342 AssertReturn(pfnHandlerRC != NIL_RTRCPTR, VERR_INVALID_POINTER); 342 343 } 343 344 else … … 425 426 { 426 427 RTRCPTR pfnPfHandlerRC = NIL_RTRCPTR; 427 intrc = PDMR3LdrGetSymbolRCLazy(pVM, VMMRC_MAIN_MODULE_NAME, NULL /*pszSearchPath*/, pszPfHandlerRC, &pfnPfHandlerRC);428 rc = PDMR3LdrGetSymbolRCLazy(pVM, VMMRC_MAIN_MODULE_NAME, NULL /*pszSearchPath*/, pszPfHandlerRC, &pfnPfHandlerRC); 428 429 if (RT_SUCCESS(rc)) 429 430 return PGMR3HandlerVirtualTypeRegisterEx(pVM, enmKind, fRelocUserRC,
Note:
See TracChangeset
for help on using the changeset viewer.