Changeset 48010 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Aug 23, 2013 7:41:13 AM (12 years ago)
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/freebsd/PerformanceFreeBSD.cpp ¶
r45051 r48010 40 40 int CollectorFreeBSD::getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle) 41 41 { 42 return E_NOTIMPL;42 return VERR_NOT_IMPLEMENTED; 43 43 } 44 44 … … 102 102 int CollectorFreeBSD::getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel) 103 103 { 104 return E_NOTIMPL;104 return VERR_NOT_IMPLEMENTED; 105 105 } 106 106 107 107 int CollectorFreeBSD::getProcessMemoryUsage(RTPROCESS process, ULONG *used) 108 108 { 109 return E_NOTIMPL;109 return VERR_NOT_IMPLEMENTED; 110 110 } 111 111 -
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.