Changeset 14337 in vbox for trunk/src/VBox
- Timestamp:
- Nov 18, 2008 10:24:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HostImpl.cpp
r14336 r14337 1195 1195 ULONG tmp; 1196 1196 int rc = hal->getHostMemoryUsage(size, &tmp, &tmp); 1197 size /= 1024;1197 *size /= 1024; 1198 1198 delete hal; 1199 1199 return rc; … … 1218 1218 ULONG tmp; 1219 1219 int rc = hal->getHostMemoryUsage(&tmp, &tmp, available); 1220 available /= 1024;1220 *available /= 1024; 1221 1221 delete hal; 1222 1222 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.