aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_loadavg.c
diff options
context:
space:
mode:
authorhejl <hejl@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-03-08 18:46:21 +0000
committerhejl <hejl@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-03-08 18:46:21 +0000
commit06ad633f01a5c0a5443dc4715887a27f4c6810ac (patch)
tree694ffa8aafd15237173900fe6f36b86ec869a145 /plugin_loadavg.c
parentf54facba617e2c6b22714e581e43fa8d0e45c4d9 (diff)
downloadlcd4linux-06ad633f01a5c0a5443dc4715887a27f4c6810ac.tar.gz
[lcd4linux @ 2004-03-08 18:46:21 by hejl]
Fixed bug introduced with "caching" the loadavg values git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@391 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugin_loadavg.c')
-rw-r--r--plugin_loadavg.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/plugin_loadavg.c b/plugin_loadavg.c
index 2c17492..2c63310 100644
--- a/plugin_loadavg.c
+++ b/plugin_loadavg.c
@@ -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) {