Changeset 91245 in vbox for trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
- Timestamp:
- Sep 15, 2021 10:53:06 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
r91017 r91245 4901 4901 4902 4902 /** 4903 * For VMMCALLRING3_PGM_MAP_CHUNK, considered internal.4904 *4905 * @returns see pgmR3PhysChunkMap.4906 * @param pVM The cross context VM structure.4907 * @param idChunk The chunk to map.4908 */4909 VMMR3DECL(int) PGMR3PhysChunkMap(PVM pVM, uint32_t idChunk)4910 {4911 PPGMCHUNKR3MAP pChunk;4912 int rc;4913 4914 PGM_LOCK_VOID(pVM);4915 rc = pgmR3PhysChunkMap(pVM, idChunk, &pChunk);4916 PGM_UNLOCK(pVM);4917 return rc;4918 }4919 4920 4921 /**4922 4903 * Invalidates the TLB for the ring-3 mapping cache. 4923 4904 *
Note:
See TracChangeset
for help on using the changeset viewer.