diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2012-11-11 08:16:33 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2012-11-11 08:16:33 +0000 |
commit | 246fd8e26feaaf957d836c831a643cc450d1541e (patch) | |
tree | 774dcde770cc978fecd62b8cff051e177235bc85 /usr.bin/top | |
parent | 3ec135656730f7281cf7c89fb4b8476084269394 (diff) | |
download | FreeBSD-src-246fd8e26feaaf957d836c831a643cc450d1541e.zip FreeBSD-src-246fd8e26feaaf957d836c831a643cc450d1541e.tar.gz |
Add the PID column to the list of sort keys.
Diffstat (limited to 'usr.bin/top')
-rw-r--r-- | usr.bin/top/machine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/top/machine.c b/usr.bin/top/machine.c index 236cb554..4284838 100644 --- a/usr.bin/top/machine.c +++ b/usr.bin/top/machine.c @@ -225,7 +225,7 @@ long percentages(); char *ordernames[] = { "cpu", "size", "res", "time", "pri", "threads", "total", "read", "write", "fault", "vcsw", "ivcsw", - "jid", NULL + "jid", "pid", NULL }; #endif |