Changeset 31732 in vbox for trunk/include/VBox
- Timestamp:
- Aug 17, 2010 1:51:51 PM (14 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/ftm.h
r31723 r31732 41 41 * @{ 42 42 */ 43 VMMR3DECL(int) FTMR3PowerOn(PVM pVM, bool f Source, unsigned uInterval, const char *pszAddress, unsigned uPort);43 VMMR3DECL(int) FTMR3PowerOn(PVM pVM, bool fMaster, unsigned uInterval, const char *pszAddress, unsigned uPort); 44 44 45 45 #endif /* IN_RING3 */ -
trunk/include/VBox/vm.h
r31359 r31732 787 787 * This is initialized together with the rest of the VM structure. */ 788 788 bool fHwVirtExtForced; 789 /** PARAV enabled flag. */790 bool f PARAVEnabled;789 /** Set when this VM is the master FT node. */ 790 bool fFaultTolerantMaster; 791 791 /** Large page enabled flag. */ 792 792 bool fUseLargePages; … … 962 962 } ssm; 963 963 964 /** FTM part. */ 965 union 966 { 967 #ifdef ___FTMInternal_h 968 struct FTM s; 969 #endif 970 uint8_t padding[128]; /* multiple of 64 */ 971 } ftm; 972 964 973 /** REM part. */ 965 974 union … … 991 1000 } cfgm; 992 1001 993 /** PARAV part. */994 union995 {996 #ifdef ___PARAVInternal_h997 struct PARAV s;998 #endif999 uint8_t padding[24]; /* multiple of 8 */1000 } parav;1001 1002 1002 /** Padding for aligning the cpu array on a page boundrary. */ 1003 uint8_t abAlignment2[1 992];1003 uint8_t abAlignment2[1886]; 1004 1004 1005 1005 /* ---- end small stuff ---- */ -
trunk/include/VBox/vm.mac
r31359 r31732 71 71 .fHWACCMEnabled resb 1 72 72 .fHwVirtExtForced resb 1 73 .fPARAVEnabled resb 1 73 .fFaultTolerantMaster resb 1 74 .fUseLargePages resb 1 74 75 75 76 alignb 8
Note:
See TracChangeset
for help on using the changeset viewer.