Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 8 Mar 2010 08:05:02 +0000 (UTC)
From:      Fabien Thomas <fabient@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
Subject:   svn commit: r204860 - stable/7/usr.sbin/pmcstat
Message-ID:  <201003080805.o28852MM026425@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: fabient
Date: Mon Mar  8 08:05:02 2010
New Revision: 204860
URL: http://svn.freebsd.org/changeset/base/204860

Log:
  MFC r204783:
   Bug fixed:
    - no display on serial terminal in top mode.
    - display alignment for continuation string.
    - correct invalid value used for display limit.

Modified:
  stable/7/usr.sbin/pmcstat/pmcpl_callgraph.c
  stable/7/usr.sbin/pmcstat/pmcpl_calltree.c
  stable/7/usr.sbin/pmcstat/pmcstat.c
Directory Properties:
  stable/7/usr.sbin/pmcstat/   (props changed)

Modified: stable/7/usr.sbin/pmcstat/pmcpl_callgraph.c
==============================================================================
--- stable/7/usr.sbin/pmcstat/pmcpl_callgraph.c	Mon Mar  8 07:53:44 2010	(r204859)
+++ stable/7/usr.sbin/pmcstat/pmcpl_callgraph.c	Mon Mar  8 08:05:02 2010	(r204860)
@@ -550,7 +550,7 @@ pmcstat_cgnode_topprint(struct pmcstat_c
 
 		len = ns_len + vs_len + 1;
 		if (width - len < 0) {
-			PMCSTAT_PRINTW("...");
+			PMCSTAT_PRINTW(" ...");
 			break;
 		}
 		width -= len;

Modified: stable/7/usr.sbin/pmcstat/pmcpl_calltree.c
==============================================================================
--- stable/7/usr.sbin/pmcstat/pmcpl_calltree.c	Mon Mar  8 07:53:44 2010	(r204859)
+++ stable/7/usr.sbin/pmcstat/pmcpl_calltree.c	Mon Mar  8 08:05:02 2010	(r204860)
@@ -387,7 +387,7 @@ pmcpl_ct_node_dumptop(int pmcin, struct 
 	if (ct->pct_narc == 0) {
 		pmcpl_ct_topscreen[x+1][*y] = NULL;
 		if (*y >= PMCPL_CT_MAXLINE ||
-		    *y >= pmcstat_displaywidth)
+		    *y >= pmcstat_displayheight)
 			return 1;
 		*y = *y + 1;
 		for (i=0; i < x; i++)

Modified: stable/7/usr.sbin/pmcstat/pmcstat.c
==============================================================================
--- stable/7/usr.sbin/pmcstat/pmcstat.c	Mon Mar  8 07:53:44 2010	(r204859)
+++ stable/7/usr.sbin/pmcstat/pmcstat.c	Mon Mar  8 08:05:02 2010	(r204860)
@@ -1311,6 +1311,9 @@ main(int argc, char **argv)
 			intrflush(stdscr, FALSE);
 			keypad(stdscr, TRUE);
 			clear();
+			/* Get terminal width / height with ncurses. */
+			getmaxyx(stdscr, pmcstat_displayheight, pmcstat_displaywidth);
+			pmcstat_displayheight--; pmcstat_displaywidth--;
 			atexit(pmcstat_topexit);
 		}
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201003080805.o28852MM026425>