]> git.webhop.me Git - lcd4linux.git/commitdiff
[lcd4linux @ 2004-03-08 18:46:21 by hejl]
authorhejl <hejl@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Mon, 8 Mar 2004 18:46:21 +0000 (18:46 +0000)
committerhejl <hejl@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Mon, 8 Mar 2004 18:46:21 +0000 (18:46 +0000)
Fixed bug introduced with "caching" the loadavg values

git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@391 3ae390bd-cb1e-0410-b409-cd5a39f66f1f

plugin_loadavg.c

index 2c1749264988e6fd51455f1db081740d03c2d285..2c633108eb803c327c25ee92ae87c70797462412 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: plugin_loadavg.c,v 1.4 2004/03/03 03:47:04 reinelt Exp $
+/* $Id: plugin_loadavg.c,v 1.5 2004/03/08 18:46:21 hejl Exp $
  *
  * plugin for load average
  *
@@ -23,6 +23,9 @@
  *
  *
  * $Log: plugin_loadavg.c,v $
+ * Revision 1.5  2004/03/08 18:46:21  hejl
+ * Fixed bug introduced with "caching" the loadavg values
+ *
  * Revision 1.4  2004/03/03 03:47:04  reinelt
  * big patch from Martin Hejl:
  * - use qprintf() where appropriate
@@ -112,7 +115,7 @@ int getloadavg (double loadavg[], int nelem)
 
 static void my_loadavg (RESULT *result, RESULT *arg1)
 {
-  static int nelem;
+  static int nelem=-1;
   int index,age;
   static double loadavg[3];
   static struct timeval last_value;
@@ -122,7 +125,7 @@ static void my_loadavg (RESULT *result, RESULT *arg1)
   
   age = (now.tv_sec - last_value.tv_sec)*1000 + (now.tv_usec - last_value.tv_usec)/1000;
   // reread every 10 msec only
-  if (age==0 || age>10) {
+  if (nelem==-1 || age==0 || age>10) {
   
     nelem=getloadavg(loadavg, 3);
     if (nelem<0) {