summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7094b9e)
raw | patch | inline | side by side (parent: 7094b9e)
author | Florian Forster <octo@crystal.wlan.home.verplant.org> | |
Thu, 5 Apr 2007 18:40:48 +0000 (20:40 +0200) | ||
committer | Florian Forster <octo@crystal.wlan.home.verplant.org> | |
Thu, 5 Apr 2007 18:40:48 +0000 (20:40 +0200) |
src/cpu.c | patch | blob | history |
diff --git a/src/cpu.c b/src/cpu.c
index db784746ac86162789abc6d8027086aed982b7e6..2a1c53a55ffd67e9793c517d6d4186897cff6251 100644 (file)
--- a/src/cpu.c
+++ b/src/cpu.c
{
#if PROCESSOR_CPU_LOAD_INFO || PROCESSOR_TEMPERATURE
kern_return_t status;
- int collectd_step;
port_host = mach_host_self ();
DEBUG ("host_processors returned %i %s", (int) cpu_list_len, cpu_list_len == 1 ? "processor" : "processors");
INFO ("cpu plugin: Found %i processor%s.", (int) cpu_list_len, cpu_list_len == 1 ? "" : "s");
- collectd_step = atoi (COLLECTD_STEP);
- if ((collectd_step > 0) && (collectd_step <= 86400))
- cpu_temp_retry_max = 86400 / collectd_step;
-
+ cpu_temp_retry_max = 86400 / interval_g;
/* #endif PROCESSOR_CPU_LOAD_INFO */
#elif defined(HAVE_LIBKSTAT)