Changeset 6836 in vbox for trunk/include
- Timestamp:
- Feb 6, 2008 7:59:53 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27955
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/gmm.h
r6800 r6836 250 250 251 251 252 GMMR3DECL(int) GMMR3InitialReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages,253 GMMOCPOLICY enmPolicy, GMMPRIORITY enmPriority);254 GMMR3DECL(int) GMMR3UpdateReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages);255 GMMR3DECL(int) GMMR3DeflatedBalloon(PVM pVM, uint32_t cPages);256 GMMR3DECL(int) GMMR3MapUnmapChunk(PVM pVM, uint32_t idChunkMap, uint32_t idChunkUnmap, PRTR3PTR ppvR3);257 GMMR3DECL(int) GMMR3SeedChunk(PVM pVM, RTR3PTR pvR3);258 259 260 252 261 253 /** … … 383 375 384 376 377 #ifdef IN_RING3 378 /** @defgroup grp_gmm_r3 The Global Memory Manager Ring-3 API Wrappers 379 * @ingroup grp_gmm 380 * @{ 381 */ 382 GMMR3DECL(int) GMMR3InitialReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages, 383 GMMOCPOLICY enmPolicy, GMMPRIORITY enmPriority); 384 GMMR3DECL(int) GMMR3UpdateReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages); 385 GMMR3DECL(int) GMMR3AllocatePagesPrepare(PVM pVM, PGMMALLOCATEPAGESREQ *ppReq, uint32_t cPages, GMMACCOUNT enmAccount); 386 GMMR3DECL(int) GMMR3AllocatePagesPerform(PVM pVM, PGMMALLOCATEPAGESREQ pReq); 387 GMMR3DECL(void) GMMR3AllocatePagesCleanup(PGMMALLOCATEPAGESREQ pReq); 388 GMMR3DECL(int) GMMR3DeflatedBalloon(PVM pVM, uint32_t cPages); 389 GMMR3DECL(int) GMMR3MapUnmapChunk(PVM pVM, uint32_t idChunkMap, uint32_t idChunkUnmap, PRTR3PTR ppvR3); 390 GMMR3DECL(int) GMMR3SeedChunk(PVM pVM, RTR3PTR pvR3); 385 391 /** @} */ 392 #endif /* IN_RING3 */ 393 394 /** @} */ 386 395 387 396 __END_DECLS
Note:
See TracChangeset
for help on using the changeset viewer.