search for: getcpumodel

Displaying 1 result from an estimated 1 matches for "getcpumodel".

2010 May 24
0
[PATCH matahari] Moves the CPU properties into the Host API space.
...id @@ -121,12 +126,6 @@ Host::removeHostListener(HostListener* listener) _listeners.erase(listener); } -Processors& -Host::getProcessors() -{ - return _processors; -} - string Host:: getUUID() const { @@ -163,6 +162,24 @@ Host::isBeeping() const return _beeping; } +string +Host::getCPUModel() const +{ + return Platform::instance()->getCPUModel(); +} + +unsigned int +Host::getNumberOfCPUCores() const +{ + return Platform::instance()->getNumberOfCPUCores(); +} + +double +Host::getLoadAverage() const +{ + return Platform::instance()->getLoadAverage(); +} + void Host::identi...