Changeset 48010 in vbox for trunk/src/VBox/Main/src-server/os2
- Timestamp:
- Aug 23, 2013 7:41:13 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/os2/PerformanceOs2.cpp
r44529 r48010 40 40 int CollectorOS2::getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle) 41 41 { 42 return E_NOTIMPL;42 return VERR_NOT_IMPLEMENTED; 43 43 } 44 44 45 45 int CollectorOS2::getHostCpuMHz(ULONG *mhz) 46 46 { 47 return E_NOTIMPL;47 return VERR_NOT_IMPLEMENTED; 48 48 } 49 49 50 50 int CollectorOS2::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) 51 51 { 52 return E_NOTIMPL;52 return VERR_NOT_IMPLEMENTED; 53 53 } 54 54 55 55 int CollectorOS2::getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel) 56 56 { 57 return E_NOTIMPL;57 return VERR_NOT_IMPLEMENTED; 58 58 } 59 59 60 60 int CollectorOS2::getProcessMemoryUsage(RTPROCESS process, ULONG *used) 61 61 { 62 return E_NOTIMPL;62 return VERR_NOT_IMPLEMENTED; 63 63 } 64 64
Note:
See TracChangeset
for help on using the changeset viewer.