Changeset 28549 in vbox
- Timestamp:
- Apr 21, 2010 8:57:06 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60358
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r28529 r28549 1449 1449 STDMETHODIMP Machine::COMSETTER(MemoryBalloonSize)(ULONG memoryBalloonSize) 1450 1450 { 1451 /* This must match GMMR0Init; currently we only support memory ballooning on all 64-bit hosts except Mac OS X */ 1452 #if HC_ARCH_BITS == 64 && (defined(RT_OS_WINDOWS) || defined(RT_OS_SOLARIS) || defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD)) 1451 1453 /* check limits */ 1452 1454 if (memoryBalloonSize >= VMMDEV_MAX_MEMORY_BALLOON(mHWData->mMemorySize)) … … 1465 1467 1466 1468 return S_OK; 1469 #else 1470 return setError(E_NOTIMPL, tr("Memory ballooning is only supported on 64-bit hosts")); 1471 #endif 1467 1472 } 1468 1473
Note:
See TracChangeset
for help on using the changeset viewer.