Changeset 29319 in vbox for trunk/src/VBox/VMM
- Timestamp:
- May 11, 2010 9:31:01 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r29303 r29319 767 767 } 768 768 769 #if HC_ARCH_BITS == 64 && (defined(RT_OS_WINDOWS) || defined(RT_OS_SOLARIS) || defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD)) 769 770 /** 770 771 * Rendezvous callback used by PGMR3ChangeMemBalloon that changes the memory balloon size … … 908 909 RTMemFree(paPhysPage); 909 910 } 911 #endif 910 912 911 913 /** … … 920 922 VMMR3DECL(int) PGMR3PhysChangeMemBalloon(PVM pVM, bool fInflate, unsigned cPages, RTGCPHYS *paPhysPage) 921 923 { 924 /* This must match GMMR0Init; currently we only support memory ballooning on all 64-bit hosts except Mac OS X */ 925 #if HC_ARCH_BITS == 64 && (defined(RT_OS_WINDOWS) || defined(RT_OS_SOLARIS) || defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD)) 922 926 int rc; 923 927 … … 950 954 } 951 955 return rc; 956 #else 957 return VERR_NOT_IMPLEMENTED; 958 #endif 952 959 } 953 960
Note:
See TracChangeset
for help on using the changeset viewer.