diff options
author | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2018-09-05 09:35:50 +0000 |
---|---|---|
committer | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2018-09-05 09:35:50 +0000 |
commit | ebd6c3426f83f49e4be297a3c7bf83a3d76ea33b (patch) | |
tree | a45286bbab9fa7acbb6ec77302e3d31b9484712b /usr.sbin | |
parent | 54752d643254c5a87477e666cd683e4bca3825e5 (diff) |
Add "op" column for CP_SPIN. Diff from fukaumi at soum.co.jp
ok solene
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/iostat/iostat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/iostat/iostat.c b/usr.sbin/iostat/iostat.c index 27f710a47a2..70a00fe5278 100644 --- a/usr.sbin/iostat/iostat.c +++ b/usr.sbin/iostat/iostat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iostat.c,v 1.40 2018/02/10 19:49:50 cheloha Exp $ */ +/* $OpenBSD: iostat.c,v 1.41 2018/09/05 09:35:49 yasuoka Exp $ */ /* $NetBSD: iostat.c,v 1.10 1996/10/25 18:21:58 scottr Exp $ */ /* @@ -229,7 +229,7 @@ header(void) printf(" %16.16s ", cur.dk_name[i]); if (ISSET(todo, SHOW_CPU)) - printf(" cpu"); + printf(" cpu"); printf("\n"); /* Sub-Headers. */ @@ -254,7 +254,7 @@ header(void) printf(" KB xfr time "); if (ISSET(todo, SHOW_CPU)) - printf(" us ni sy in id"); + printf(" us ni sy sp in id"); printf("\n"); } |