cpu plugin: Don't use `COLLECT_STEP' anymore.
authorFlorian Forster <octo@crystal.wlan.home.verplant.org>
Thu, 5 Apr 2007 18:40:48 +0000 (20:40 +0200)
committerFlorian Forster <octo@crystal.wlan.home.verplant.org>
Thu, 5 Apr 2007 18:40:48 +0000 (20:40 +0200)
src/cpu.c

index db78474..2a1c53a 100644 (file)
--- a/src/cpu.c
+++ b/src/cpu.c
@@ -117,7 +117,6 @@ static int init (void)
 {
 #if PROCESSOR_CPU_LOAD_INFO || PROCESSOR_TEMPERATURE
        kern_return_t status;
-       int collectd_step;
 
        port_host = mach_host_self ();
 
@@ -132,10 +131,7 @@ static int init (void)
        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)