Changeset 95112 in vbox
- Timestamp:
- May 25, 2022 8:43:25 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151593
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r93931 r95112 938 938 * @remarks The @a uUser argument is the index of the PGMPOOLPAGE. 939 939 */ 940 DECL EXPORT(VBOXSTRICTRC) pgmRZPoolAccessPfHandler(PVMCC pVM, PVMCPUCC pVCpu, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame,941 RTGCPTR pvFault, RTGCPHYS GCPhysFault, uint64_t uUser)940 DECLCALLBACK(VBOXSTRICTRC) pgmRZPoolAccessPfHandler(PVMCC pVM, PVMCPUCC pVCpu, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, 941 RTGCPTR pvFault, RTGCPHYS GCPhysFault, uint64_t uUser) 942 942 { 943 943 STAM_PROFILE_START(&pVM->pgm.s.CTX_SUFF(pPool)->StatMonitorRZ, a); … … 1245 1245 * @note The @a uUser argument is the index of the PGMPOOLPAGE. 1246 1246 */ 1247 PGM_ALL_CB2_DECL(VBOXSTRICTRC)1247 DECLCALLBACK(VBOXSTRICTRC) 1248 1248 pgmPoolAccessHandler(PVMCC pVM, PVMCPUCC pVCpu, RTGCPHYS GCPhys, void *pvPhys, void *pvBuf, size_t cbBuf, 1249 1249 PGMACCESSTYPE enmAccessType, PGMACCESSORIGIN enmOrigin, uint64_t uUser) -
trunk/src/VBox/VMM/include/PGMInternal.h
r93922 r95112 3746 3746 void pgmPoolMonitorChainFlush(PPGMPOOL pPool, PPGMPOOLPAGE pPage); 3747 3747 void pgmPoolMonitorModifiedInsert(PPGMPOOL pPool, PPGMPOOLPAGE pPage); 3748 PGM_ALL_CB2_PROTO(FNPGMPHYSHANDLER)pgmPoolAccessHandler;3748 FNPGMPHYSHANDLER pgmPoolAccessHandler; 3749 3749 #ifndef IN_RING3 3750 DECLEXPORT(FNPGMRZPHYSPFHANDLER)pgmRZPoolAccessPfHandler;3750 FNPGMRZPHYSPFHANDLER pgmRZPoolAccessPfHandler; 3751 3751 #endif 3752 3752
Note:
See TracChangeset
for help on using the changeset viewer.