diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1997-04-21 13:53:47 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1997-04-21 13:53:47 +0000 |
| commit | 595c8b2ff9bdda593eadd5f08bf3b6a6c1b56efd (patch) | |
| tree | 276093cf57c1d6eba4c1a3990077478e2c9e573a | |
| parent | 447e1358b60016b29c0824176d3247dccb34ab32 (diff) | |
Notes
| -rw-r--r-- | usr.bin/top/machine.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/top/machine.c b/usr.bin/top/machine.c index ef60aa9f8e4b3..57d3175495c65 100644 --- a/usr.bin/top/machine.c +++ b/usr.bin/top/machine.c @@ -17,7 +17,7 @@ * Steven Wallace <swallace@freebsd.org> * Wolfram Schneider <wosch@FreeBSD.org> * - * $Id: machine.c,v 1.1.1.1 1997/03/23 18:55:20 joerg Exp $ + * $Id: machine.c,v 1.2 1997/04/19 20:28:50 peter Exp $ */ @@ -122,22 +122,22 @@ static struct nlist nlst[] = { #ifdef P_IDLEPROC /* FreeBSD SMP kernel */ static char header[] = - " PID X PRI NICE SIZE RES STATE C TIME WCPU CPU COMMAND"; + " PID X PRI NICE SIZE RES STATE C TIME WCPU CPU COMMAND"; /* 0123456 -- field to fill in starts at header+6 */ #define UNAME_START 6 #define Proc_format \ - "%5d %-8.8s%3d%3d%7s %6s %-6.6s%1x%7s %5.2f%% %5.2f%% %.14s" + "%5d %-16.16s%3d%3d%7s %6s %-6.6s%1x%7s %5.2f%% %5.2f%% %.6s" #else /* Standard kernel */ static char header[] = - " PID X PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND"; + " PID X PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND"; /* 0123456 -- field to fill in starts at header+6 */ #define UNAME_START 6 #define Proc_format \ - "%5d %-8.8s%3d %3d%7s %6s %-6.6s%7s %5.2f%% %5.2f%% %.14s" + "%5d %-16.16s%3d %3d%7s %6s %-6.6s%7s %5.2f%% %5.2f%% %.6s" #endif |
