diff options
author | bde <bde@FreeBSD.org> | 1996-03-29 14:48:25 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-03-29 14:48:25 +0000 |
commit | f92ab043066bf68921deefc5e9e6d7ee03fe6b8f (patch) | |
tree | 475f74de9f8f2b54987cd926d6227c1cc208fae8 /usr.bin/systat | |
parent | b277faacff94f431b21fb2b2eceba4407e2e717d (diff) | |
download | FreeBSD-src-f92ab043066bf68921deefc5e9e6d7ee03fe6b8f.zip FreeBSD-src-f92ab043066bf68921deefc5e9e6d7ee03fe6b8f.tar.gz |
Renamed Proc-cache to Dir-cache for the same reasons as in vmstat.
Tweaked screen positions to match.
Diffstat (limited to 'usr.bin/systat')
-rw-r--r-- | usr.bin/systat/vmstat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/systat/vmstat.c b/usr.bin/systat/vmstat.c index 29ffae6..77fe924 100644 --- a/usr.bin/systat/vmstat.c +++ b/usr.bin/systat/vmstat.c @@ -315,9 +315,9 @@ labelkre() mvprintw(GRAPHROW + 1, GRAPHCOL, "| | | | | | | | | | |"); - mvprintw(NAMEIROW, NAMEICOL, "Namei Name-cache Proc-cache"); + mvprintw(NAMEIROW, NAMEICOL, "Namei Name-cache Dir-cache"); mvprintw(NAMEIROW + 1, NAMEICOL, - " Calls hits %% hits %%"); + " Calls hits %% hits %%"); mvprintw(DISKROW, DISKCOL, "Discs"); mvprintw(DISKROW + 1, DISKCOL, "seeks"); mvprintw(DISKROW + 2, DISKCOL, "xfers"); @@ -485,7 +485,7 @@ showkre() NAMEIROW + 2, NAMEICOL + 19, 4, 0, 1); putint(nchtotal.ncs_pass2, NAMEIROW + 2, NAMEICOL + 23, 9); putfloat(nchtotal.ncs_pass2 * 100.0 / nz(s.nchcount), - NAMEIROW + 2, NAMEICOL + 34, 4, 0, 1); + NAMEIROW + 2, NAMEICOL + 33, 4, 0, 1); #undef nz } |