From 504656e9484752c9c0596f153f27089c1961f501 Mon Sep 17 00:00:00 2001 From: reinelt Date: Wed, 14 Jan 2004 11:33:00 +0000 Subject: [lcd4linux @ 2004-01-14 11:33:00 by reinelt] new plugin 'uname' which does what it's called text widget nearly finished first results displayed on MatrixOrbital git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@310 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- plugin_cpuinfo.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'plugin_cpuinfo.c') diff --git a/plugin_cpuinfo.c b/plugin_cpuinfo.c index 031429f..60b0880 100644 --- a/plugin_cpuinfo.c +++ b/plugin_cpuinfo.c @@ -1,4 +1,4 @@ -/* $Id: plugin_cpuinfo.c,v 1.1 2004/01/13 10:03:01 reinelt Exp $ +/* $Id: plugin_cpuinfo.c,v 1.2 2004/01/14 11:33:00 reinelt Exp $ * * plugin for /proc/cpuinfo parsing * @@ -23,6 +23,11 @@ * * * $Log: plugin_cpuinfo.c,v $ + * Revision 1.2 2004/01/14 11:33:00 reinelt + * new plugin 'uname' which does what it's called + * text widget nearly finished + * first results displayed on MatrixOrbital + * * Revision 1.1 2004/01/13 10:03:01 reinelt * new util 'hash' for associative arrays * new plugin 'cpuinfo' @@ -67,7 +72,8 @@ static void my_cpuinfo (RESULT *result, RESULT *arg1) stream=fopen("/proc/cpuinfo", "r"); if (stream==NULL) { error ("fopen(/proc/cpuinfo) failed: %s", strerror(errno)); - goto error; + SetResult(&result, R_STRING, ""); + return; } while (!feof(stream)) { @@ -91,9 +97,7 @@ static void my_cpuinfo (RESULT *result, RESULT *arg1) hash_set (&CPUinfo, key, val); } - fclose (stream); - time(&now); } @@ -101,8 +105,6 @@ static void my_cpuinfo (RESULT *result, RESULT *arg1) val=hash_get(&CPUinfo, key); if (val==NULL) val=""; - error: - // val=""; SetResult(&result, R_STRING, val); } -- cgit v1.2.3