diff options
author | ache <ache@FreeBSD.org> | 1994-11-10 13:39:01 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-11-10 13:39:01 +0000 |
commit | 065c79ba5839006c4b65f12084796b8ea0abcf0f (patch) | |
tree | 5352d51ace6951e4738a46daf4c13c412b986bcc /usr.sbin/iostat | |
parent | f7fa8274c4085040df81a57fc4b578ec56d15c23 (diff) | |
download | FreeBSD-src-065c79ba5839006c4b65f12084796b8ea0abcf0f.zip FreeBSD-src-065c79ba5839006c4b65f12084796b8ea0abcf0f.tar.gz |
Fix printout bug
Submitted by: fredriks@mcs.com
Diffstat (limited to 'usr.sbin/iostat')
-rw-r--r-- | usr.sbin/iostat/iostat.8 | 2 | ||||
-rw-r--r-- | usr.sbin/iostat/iostat.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/iostat/iostat.8 b/usr.sbin/iostat/iostat.8 index 679dfc6..034bf71 100644 --- a/usr.sbin/iostat/iostat.8 +++ b/usr.sbin/iostat/iostat.8 @@ -118,6 +118,8 @@ seeks and rotational latency) % of cpu time in user mode running niced processes .It \&sy % of cpu time in system mode +.It \&in +% of cpu time in interrupt mode .It \&id % of cpu time in idle mode .El diff --git a/usr.sbin/iostat/iostat.c b/usr.sbin/iostat/iostat.c index f2925e8..1d646e2 100644 --- a/usr.sbin/iostat/iostat.c +++ b/usr.sbin/iostat/iostat.c @@ -339,7 +339,7 @@ phdr(signo) for (i = 0; i < dk_ndrive; i++) if (dr_select[i]) (void)printf(" sps tps msps "); - (void)printf(" us ni sy id\n"); + (void)printf(" us ni sy in id\n"); } void |