- Timestamp:
- Jun 18, 2009 11:01:39 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/MMPagePool.cpp
r20011 r20680 397 397 VMMR3DECL(void *) MMR3PageAlloc(PVM pVM) 398 398 { 399 /* Note: unprotected by locks; currently fine as it's used during init or under the PGM lock */ 399 400 return mmR3PagePoolAlloc(pVM->mm.s.pPagePoolR3); 400 401 } … … 415 416 VMMR3DECL(RTHCPHYS) MMR3PageAllocPhys(PVM pVM) 416 417 { 418 /* Note: unprotected by locks; currently fine as it's used during init or under the PGM lock */ 417 419 /** @todo optimize this, it's the most common case now. */ 418 420 void *pv = mmR3PagePoolAlloc(pVM->mm.s.pPagePoolR3);
Note:
See TracChangeset
for help on using the changeset viewer.