|
From: <cza...@us...> - 2010-12-12 01:18:41
|
Revision: 534
http://g15daemon.svn.sourceforge.net/g15daemon/?rev=534&view=rev
Author: czarnyckm
Date: 2010-12-12 01:18:33 +0000 (Sun, 12 Dec 2010)
Log Message:
-----------
- Improve Summary Screen with 3 and 6 core CPU
Modified Paths:
--------------
trunk/g15daemon-clients/g15stats/ChangeLog
trunk/g15daemon-clients/g15stats/configure.in
trunk/g15daemon-clients/g15stats/g15stats.c
Modified: trunk/g15daemon-clients/g15stats/ChangeLog
===================================================================
--- trunk/g15daemon-clients/g15stats/ChangeLog 2010-10-26 09:23:31 UTC (rev 533)
+++ trunk/g15daemon-clients/g15stats/ChangeLog 2010-12-12 01:18:33 UTC (rev 534)
@@ -76,3 +76,5 @@
- Improve refresh interval causing -nan error with the newer kernel on very fast machines due to too often glibtop probing
- Fix possible -nan error on the fast screens switch
- Change refresh interval with the option -r seconds (The seconds must be between 1 and 300)
+SVN 533 (1.9.6)
+- Improve Summary Screen with 3 and 6 core CPU
Modified: trunk/g15daemon-clients/g15stats/configure.in
===================================================================
--- trunk/g15daemon-clients/g15stats/configure.in 2010-10-26 09:23:31 UTC (rev 533)
+++ trunk/g15daemon-clients/g15stats/configure.in 2010-12-12 01:18:33 UTC (rev 534)
@@ -1,7 +1,7 @@
-AC_INIT(g15stats,[1.9.5], [mla...@us...])
+AC_INIT(g15stats,[1.9.6], [mla...@us...])
PACKAGE=g15stats
-VERSION=1.9.5
+VERSION=1.9.6
AC_PREFIX_DEFAULT(/usr)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
Modified: trunk/g15daemon-clients/g15stats/g15stats.c
===================================================================
--- trunk/g15daemon-clients/g15stats/g15stats.c 2010-10-26 09:23:31 UTC (rev 533)
+++ trunk/g15daemon-clients/g15stats/g15stats.c 2010-12-12 01:18:33 UTC (rev 534)
@@ -895,12 +895,15 @@
switch (ncpu) {
case 1 :
case 2 :
- case 3 :
case 5 :
case 7 :
move = 1;
height = 6;
break;
+ case 3 :
+ case 6 :
+ height =6;
+ break;
default :
height = 8;
break;
@@ -913,9 +916,9 @@
move = 1;
break;
}
- height = 8;
- }
-
+ height = 8;
+ }
+
shift = height + 1;
shift2 = (2 * shift);
break;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|