|
From: <cza...@us...> - 2009-05-27 22:12:28
|
Revision: 504
http://g15daemon.svn.sourceforge.net/g15daemon/?rev=504&view=rev
Author: czarnyckm
Date: 2009-05-27 22:12:03 +0000 (Wed, 27 May 2009)
Log Message:
-----------
fixed --unicore parameter length
clean up
Modified Paths:
--------------
trunk/g15daemon-clients/g15stats/ChangeLog
trunk/g15daemon-clients/g15stats/g15stats.c
Modified: trunk/g15daemon-clients/g15stats/ChangeLog
===================================================================
--- trunk/g15daemon-clients/g15stats/ChangeLog 2009-05-27 21:52:20 UTC (rev 503)
+++ trunk/g15daemon-clients/g15stats/ChangeLog 2009-05-27 22:12:03 UTC (rev 504)
@@ -6,7 +6,7 @@
- Improve response time when switching screens.
- Battery status monitoring courtesy of Pieter De Wit
- Detect if Network interface is incorrect and disable netscreen. Resolves 100% cpu issue reported by Guy Dierx.
-SVN:
+SVN 504:
- Bottom row information rotation switched with the L5 key
- 3 additional CPU graph variants switched with the L4 key (at this moment for multi core processors only)
- New default CPU Screen (at this moment for multi core processors only)
Modified: trunk/g15daemon-clients/g15stats/g15stats.c
===================================================================
--- trunk/g15daemon-clients/g15stats/g15stats.c 2009-05-27 21:52:20 UTC (rev 503)
+++ trunk/g15daemon-clients/g15stats/g15stats.c 2009-05-27 22:12:03 UTC (rev 504)
@@ -421,7 +421,6 @@
}
height = 12;
- //FIXME : It should be tested
ncpumax = height;
break;
case MODE_CPU_SUMARY :
@@ -430,7 +429,6 @@
}
height = 16;
- //FIXME : It should be tested
ncpumax = height;
glibtop_mem mem;
glibtop_get_mem(&mem);
@@ -932,7 +930,7 @@
if(0==strncmp(argv[i],"-d",2)||0==strncmp(argv[i],"--daemon",8)) {
go_daemon=1;
}
- if(0==strncmp(argv[i],"-u",2)||0==strncmp(argv[i],"--unicore",11)) {
+ if(0==strncmp(argv[i],"-u",2)||0==strncmp(argv[i],"--unicore",8)) {
unicore=1;
}
if(0==strncmp(argv[i],"-nsa",4)||0==strncmp(argv[i],"--net-scale-absolute",20)) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|