top: miscellaneous accumulated tweaks to code/comments

Jeeze, to correct spelling on one single word (incure)
you had to go and align the entire comments paragraph?

[ well, at least there's one other minor code change ]

Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
Jim Warner 2015-07-27 00:00:00 -05:00 committed by Craig Small
parent cca63f2f66
commit 479845d4f0
2 changed files with 6 additions and 6 deletions

View File

@ -1942,7 +1942,7 @@ static void build_headers (void) {
if (EU_MAXPFLGS <= f) continue; if (EU_MAXPFLGS <= f) continue;
#endif #endif
if (EU_CMD == f && CHKw(w, Show_CMDLIN)) Frames_libflags |= L_CMDLINE; if (EU_CMD == f && CHKw(w, Show_CMDLIN)) Frames_libflags |= L_CMDLINE;
Frames_libflags |= Fieldstab[w->procflgs[i]].lflg; Frames_libflags |= Fieldstab[f].lflg;
s = scat(s, justify_pad(N_col(f) s = scat(s, justify_pad(N_col(f)
, VARcol(f) ? w->varcolsz : Fieldstab[f].width , VARcol(f) ? w->varcolsz : Fieldstab[f].width
, CHKw(w, Fieldstab[f].align))); , CHKw(w, Fieldstab[f].align)));

View File

@ -243,11 +243,11 @@ typedef struct HST_t {
int pid; // record 'key' int pid; // record 'key'
} HST_t; } HST_t;
#else #else
/* This structure supports 'history' processing and records the /* This structure supports 'history' processing and records the bare
bare minimum of needed information from one frame to the next -- minimum of needed information from one frame to the next -- we do
we don't calc and save data that goes unused like the old top nor not calc and save data that goes unused like the old top nor will
do we incure the overhead of sorting to support a binary search we incur the additional overhead of sort to support binary search
(or worse, a friggin' for loop) when retrieval is necessary! */ (or worse, a friggin' for loop) when retrievals become necessary! */
typedef struct HST_t { typedef struct HST_t {
TIC_t tics; // last frame's tics count TIC_t tics; // last frame's tics count
unsigned long maj, min; // last frame's maj/min_flt counts unsigned long maj, min; // last frame's maj/min_flt counts