summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions_system.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-11-17 14:38:52 -0500
committerMichael Larabel <michael@phx-laptop.(none)>2008-11-17 14:38:52 -0500
commit5fc0dfda5f28d34d276af5659618f6248a401277 (patch)
tree0aa9660460f93497f97ce8cc7356eca68541bb2d /pts-core/functions/pts-functions_system.php
parenta3e4b31b492c593cbf063e3d6ba2ebe63b3bdb5b (diff)
downloadphoronix-test-suite-upstream-5fc0dfda5f28d34d276af5659618f6248a401277.tar.gz
phoronix-test-suite-upstream-5fc0dfda5f28d34d276af5659618f6248a401277.tar.xz
phoronix-test-suite-upstream-5fc0dfda5f28d34d276af5659618f6248a401277.zip
pts-core: Standardize CPU function names
Diffstat (limited to 'pts-core/functions/pts-functions_system.php')
-rw-r--r--pts-core/functions/pts-functions_system.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/pts-core/functions/pts-functions_system.php b/pts-core/functions/pts-functions_system.php
index 4249e48..5396450 100644
--- a/pts-core/functions/pts-functions_system.php
+++ b/pts-core/functions/pts-functions_system.php
@@ -32,7 +32,7 @@ function pts_hw_string()
// Returns string of hardware information
$hardware = array();
- array_push($hardware, "Processor: " . processor_string() . " (Total Cores: " . cpu_core_count() . ")");
+ array_push($hardware, "Processor: " . hw_cpu_string() . " (Total Cores: " . hw_cpu_core_count() . ")");
array_push($hardware, "Motherboard: " . main_system_hardware_string());
array_push($hardware, "Chipset: " . motherboard_chipset_string());
array_push($hardware, "System Memory: " . system_memory_string());
@@ -64,7 +64,7 @@ function pts_sw_string()
}
function pts_system_identifier_string()
{
- $components = array(processor_string(), main_system_hardware_string(), operating_system_release(), compiler_version());
+ $components = array(hw_cpu_string(), main_system_hardware_string(), operating_system_release(), compiler_version());
return base64_encode(implode("__", $components));
}