Changeset 93735 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Feb 14, 2022 5:06:27 PM (3 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/PGMR0.cpp
r93716 r93735 846 846 * @param pfnHandler Pointer to the ring-0 handler callback. 847 847 * @param pfnPfHandler Pointer to the ring-0 \#PF handler callback. 848 * callback. 848 * callback. Can be NULL (not recommended though). 849 849 * @param pszDesc The type description. 850 850 * @param hType The handle to do ring-0 callback registrations for. … … 859 859 */ 860 860 AssertPtrReturn(pfnHandler, VERR_INVALID_POINTER); 861 AssertPtrReturn(pfnPfHandler, VERR_INVALID_POINTER); 861 AssertPtrNullReturn(pfnPfHandler, VERR_INVALID_POINTER); 862 862 863 AssertPtrReturn(pszDesc, VERR_INVALID_POINTER); 863 864 AssertReturn( enmKind == PGMPHYSHANDLERKIND_WRITE -
trunk/src/VBox/VMM/include/PGMInternal.h
r93716 r93735 512 512 /** Pointer to the ring-0 callback function. */ 513 513 R0PTRTYPE(PFNPGMPHYSHANDLER) pfnHandler; 514 /** Pointer to the ring- 9 callback function for \#PFs. */514 /** Pointer to the ring-0 callback function for \#PFs, can be NULL. */ 515 515 R0PTRTYPE(PFNPGMRZPHYSPFHANDLER) pfnPfHandler; 516 516 /** Description / Name. For easing debugging. */
Note:
See TracChangeset
for help on using the changeset viewer.