]> git.webhop.me Git - lcd4linux.git/commitdiff
[lcd4linux @ 2004-01-22 08:55:30 by reinelt]
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Thu, 22 Jan 2004 08:55:30 +0000 (08:55 +0000)
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Thu, 22 Jan 2004 08:55:30 +0000 (08:55 +0000)
fixed unhandled kernel-2.6 entries in /prco/stat

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

plugin_proc_stat.c

index 6b5e8d7b7533bfc7cee9e6bf195c6ff320452219..26cc8a9487fbac84183ef655ea5412da46b162a4 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: plugin_proc_stat.c,v 1.9 2004/01/21 14:29:03 reinelt Exp $
+/* $Id: plugin_proc_stat.c,v 1.10 2004/01/22 08:55:30 reinelt Exp $
  *
  * plugin for /proc/stat parsing
  *
@@ -23,6 +23,9 @@
  *
  *
  * $Log: plugin_proc_stat.c,v $
+ * Revision 1.10  2004/01/22 08:55:30  reinelt
+ * fixed unhandled kernel-2.6 entries in /prco/stat
+ *
  * Revision 1.9  2004/01/21 14:29:03  reinelt
  * new helper 'hash_get_regex' which delivers the sum over regex matched items
  * new function 'disk()' which uses this regex matching
@@ -164,21 +167,10 @@ static int parse_proc_stat (void)
        dev=strtok(NULL, " \t\n:()");
       }
     } 
-    else if (strncmp(buffer, "ctxt ", 5)==0) {
-      strtok(buffer, " \t\n");
-      hash_set2 ("ctxt", NULL, strtok(NULL, " \t\n"));
-    } 
-    else if (strncmp(buffer, "btime ", 6)==0) {
-      strtok(buffer, " \t\n");
-      hash_set2 ("btime", NULL, strtok(NULL, " \t\n"));
-    } 
-    else if (strncmp(buffer, "processes ", 10)==0) {
-      strtok(buffer, " \t\n");
-      hash_set1 ("processes", strtok(NULL, " \t\n"));
-    } 
     else {
-      error ("internal error: unhandled entry '%s' from /proc/stat", strtok(buffer, " \t\n"));
-    }
+      char *key=strtok(buffer, " \t\n");
+      hash_set2 (key, NULL, strtok(NULL, " \t\n"));
+    } 
   }
   fclose (stream);
   return 0;