svn commit: r334866 - head/usr.bin/top
Eitan Adler
eadler at FreeBSD.org
Sat Jun 9 02:18:16 UTC 2018
Author: eadler
Date: Sat Jun 9 02:18:15 2018
New Revision: 334866
URL: https://svnweb.freebsd.org/changeset/base/334866
Log:
top(1): actually make change for tid vs pid
Modified:
head/usr.bin/top/machine.c
Modified: head/usr.bin/top/machine.c
==============================================================================
--- head/usr.bin/top/machine.c Sat Jun 9 02:15:45 2018 (r334865)
+++ head/usr.bin/top/machine.c Sat Jun 9 02:18:15 2018 (r334866)
@@ -98,7 +98,6 @@ static const char smp_header_thr_and_pid[] =
" PID%*s %-*.*s THR PRI NICE SIZE RES%*s STATE C TIME %7s COMMAND";
static const char smp_header_tid_only[] =
" THR%*s %-*.*s " "PRI NICE SIZE RES%*s STATE C TIME %7s COMMAND";
-
static const char smp_Proc_format[] =
"%5d%*s %-*.*s %s%3d %4s%7s %6s%*.*s %-6.6s %2d%7s %6.2f%% %.*s";
@@ -106,7 +105,6 @@ static char up_header_thr_and_pid[] =
" PID%*s %-*.*s THR PRI NICE SIZE RES%*s STATE TIME %7s COMMAND";
static char up_header_tid_only[] =
" THR%*s %-*.*s " "PRI NICE SIZE RES%*s STATE TIME %7s COMMAND";
-
static char up_Proc_format[] =
"%5d%*s %-*.*s %s%3d %4s%7s %6s%*.*s %-6.6s%.0d%7s %6.2f%% %.*s";
@@ -1131,7 +1129,7 @@ format_next_process(void* xhandle, char *(*get_userid)
(int)(sizeof(thr_buf) - 2), pp->ki_numthreads);
snprintf(fmt, sizeof(fmt), proc_fmt,
- (ps.thread) ? pp->ki_tid : pp->ki_pid,
+ (ps.thread_id) ? pp->ki_tid : pp->ki_pid,
jidlength, jid_buf,
namelength, namelength, (*get_userid)(pp->ki_ruid),
thr_buf,
More information about the svn-src-all
mailing list