Changeset 26685 in vbox for trunk/include
- Timestamp:
- Feb 22, 2010 5:48:23 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57914
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pgm.h
r26616 r26685 283 283 ( (enmProt) == PGMROMPROT_READ_ROM_WRITE_IGNORE \ 284 284 || (enmProt) == PGMROMPROT_READ_ROM_WRITE_RAM ) 285 286 285 287 286 288 VMMDECL(bool) PGMIsLocked(PVM pVM); … … 405 407 406 408 409 VMMDECL(void) PGMSetLargePageUsage(PVM pVM, bool fUseLargePages); 410 411 /** 412 * Query large page usage state 413 * 414 * @returns 0 - disabled, 1 - enabled 415 * @param pVM The VM to operate on. 416 */ 417 #define PGMIsUsingLargePages(pVM) (pVM->fUseLargePages) 418 419 407 420 #ifdef IN_RC 408 421 /** @defgroup grp_pgm_gc The PGM Guest Context API -
trunk/include/VBox/vm.h
r26066 r26685 784 784 /** PARAV enabled flag. */ 785 785 bool fPARAVEnabled; 786 /** Large page enabled flag. */ 787 bool fUseLargePages; 786 788 /** @} */ 787 789
Note:
See TracChangeset
for help on using the changeset viewer.