aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/ps.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/posix/ps.c')
-rw-r--r--toys/posix/ps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/posix/ps.c b/toys/posix/ps.c
index 19292c98..2e5338ea 100644
--- a/toys/posix/ps.c
+++ b/toys/posix/ps.c
@@ -1557,8 +1557,8 @@ static void top_common(
for (i = 0; i<mix.count; i++)
run[1+stridx("RSTZ", *string_field(mix.tb[i], &field))]++;
sprintf(toybuf,
- "Tasks: %d total,%4ld running,%4ld sleeping,%4ld stopped,"
- "%4ld zombie", mix.count, run[1], run[2], run[3], run[4]);
+ "%ss: %d total,%4ld running,%4ld sleeping,%4ld stopped,%4ld zombie",
+ FLAG(H)?"Thread":"Task", mix.count, run[1], run[2], run[3], run[4]);
lines = header_line(lines, 0);
if (readfile("/proc/meminfo", toybuf, sizeof(toybuf))) {