Changeset 17911 in vbox for trunk/src/VBox/Main/Performance.cpp
- Timestamp:
- Mar 16, 2009 10:30:55 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/Performance.cpp
r15051 r17911 46 46 // Stubs for non-pure virtual methods 47 47 48 int CollectorHAL::getHostCpuLoad(ULONG * user, ULONG *kernel, ULONG *idle)48 int CollectorHAL::getHostCpuLoad(ULONG * /* user */, ULONG * /* kernel */, ULONG * /* idle */) 49 49 { 50 50 return E_NOTIMPL; 51 51 } 52 52 53 int CollectorHAL::getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel)53 int CollectorHAL::getProcessCpuLoad(RTPROCESS /* process */, ULONG * /* user */, ULONG * /* kernel */) 54 54 { 55 55 return E_NOTIMPL; 56 56 } 57 57 58 int CollectorHAL::getRawHostCpuLoad(uint64_t * user, uint64_t *kernel, uint64_t *idle)58 int CollectorHAL::getRawHostCpuLoad(uint64_t * /* user */, uint64_t * /* kernel */, uint64_t * /* idle */) 59 59 { 60 60 return E_NOTIMPL; 61 61 } 62 62 63 int CollectorHAL::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total)63 int CollectorHAL::getRawProcessCpuLoad(RTPROCESS /* process */, uint64_t * /* user */, uint64_t * /* kernel */, uint64_t * /* total */) 64 64 { 65 65 return E_NOTIMPL;
Note:
See TracChangeset
for help on using the changeset viewer.