Changeset 48007 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Aug 23, 2013 7:29:19 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/Performance.cpp
r47925 r48007 50 50 int CollectorHAL::getHostCpuLoad(ULONG * /* user */, ULONG * /* kernel */, ULONG * /* idle */) 51 51 { 52 return E_NOTIMPL;52 return VERR_NOT_IMPLEMENTED; 53 53 } 54 54 55 55 int CollectorHAL::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 CollectorHAL::getRawHostCpuLoad(uint64_t * /* user */, uint64_t * /* kernel */, uint64_t * /* idle */) 61 61 { 62 return E_NOTIMPL;62 return VERR_NOT_IMPLEMENTED; 63 63 } 64 64 65 65 int CollectorHAL::getRawHostNetworkLoad(const char * /* name */, uint64_t * /* rx */, uint64_t * /* tx */) 66 66 { 67 return E_NOTIMPL;67 return VERR_NOT_IMPLEMENTED; 68 68 } 69 69 70 70 int CollectorHAL::getRawHostDiskLoad(const char * /* name */, uint64_t * /* disk_ms */, uint64_t * /* total_ms */) 71 71 { 72 return E_NOTIMPL;72 return VERR_NOT_IMPLEMENTED; 73 73 } 74 74 75 75 int CollectorHAL::getRawProcessCpuLoad(RTPROCESS /* process */, uint64_t * /* user */, uint64_t * /* kernel */, uint64_t * /* total */) 76 76 { 77 return E_NOTIMPL;77 return VERR_NOT_IMPLEMENTED; 78 78 } 79 79 80 80 int CollectorHAL::getHostMemoryUsage(ULONG * /* total */, ULONG * /* used */, ULONG * /* available */) 81 81 { 82 return E_NOTIMPL;82 return VERR_NOT_IMPLEMENTED; 83 83 } 84 84 85 85 int CollectorHAL::getHostFilesystemUsage(const char * /* name */, ULONG * /* total */, ULONG * /* used */, ULONG * /* available */) 86 86 { 87 return E_NOTIMPL;87 return VERR_NOT_IMPLEMENTED; 88 88 } 89 89 90 90 int CollectorHAL::getHostDiskSize(const char * /* name */, uint64_t * /* size */) 91 91 { 92 return E_NOTIMPL;92 return VERR_NOT_IMPLEMENTED; 93 93 } 94 94 95 95 int CollectorHAL::getProcessMemoryUsage(RTPROCESS /* process */, ULONG * /* used */) 96 96 { 97 return E_NOTIMPL;97 return VERR_NOT_IMPLEMENTED; 98 98 } 99 99 100 100 int CollectorHAL::getDiskListByFs(const char * /* name */, DiskList& /* listUsage */, DiskList& /* listLoad */) 101 101 { 102 return E_NOTIMPL;102 return VERR_NOT_IMPLEMENTED; 103 103 } 104 104
Note:
See TracChangeset
for help on using the changeset viewer.