From c55320e9e2a8916e911bcd39ab37b79e3a7d03b2 Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Mon, 11 Jan 2021 20:43:27 +0100 Subject: New upstream version 3.0.5 --- TasksMeter.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'TasksMeter.c') diff --git a/TasksMeter.c b/TasksMeter.c index 7696988..a760ce0 100644 --- a/TasksMeter.c +++ b/TasksMeter.c @@ -46,7 +46,7 @@ static void TasksMeter_display(const Object* cast, RichString* out) { int processes = (int) this->values[2]; xSnprintf(buffer, sizeof(buffer), "%d", processes); - RichString_write(out, CRT_colors[METER_VALUE], buffer); + RichString_writeAscii(out, CRT_colors[METER_VALUE], buffer); int threadValueColor = CRT_colors[METER_VALUE]; int threadCaptionColor = CRT_colors[METER_TEXT]; if (settings->highlightThreads) { @@ -54,21 +54,21 @@ static void TasksMeter_display(const Object* cast, RichString* out) { threadCaptionColor = CRT_colors[PROCESS_THREAD]; } if (!settings->hideUserlandThreads) { - RichString_append(out, CRT_colors[METER_TEXT], ", "); + RichString_appendAscii(out, CRT_colors[METER_TEXT], ", "); xSnprintf(buffer, sizeof(buffer), "%d", (int)this->values[1]); - RichString_append(out, threadValueColor, buffer); - RichString_append(out, threadCaptionColor, " thr"); + RichString_appendAscii(out, threadValueColor, buffer); + RichString_appendAscii(out, threadCaptionColor, " thr"); } if (!settings->hideKernelThreads) { - RichString_append(out, CRT_colors[METER_TEXT], ", "); + RichString_appendAscii(out, CRT_colors[METER_TEXT], ", "); xSnprintf(buffer, sizeof(buffer), "%d", (int)this->values[0]); - RichString_append(out, threadValueColor, buffer); - RichString_append(out, threadCaptionColor, " kthr"); + RichString_appendAscii(out, threadValueColor, buffer); + RichString_appendAscii(out, threadCaptionColor, " kthr"); } - RichString_append(out, CRT_colors[METER_TEXT], "; "); + RichString_appendAscii(out, CRT_colors[METER_TEXT], "; "); xSnprintf(buffer, sizeof(buffer), "%d", (int)this->values[3]); - RichString_append(out, CRT_colors[TASKS_RUNNING], buffer); - RichString_append(out, CRT_colors[METER_TEXT], " running"); + RichString_appendAscii(out, CRT_colors[TASKS_RUNNING], buffer); + RichString_appendAscii(out, CRT_colors[METER_TEXT], " running"); } const MeterClass TasksMeter_class = { -- cgit v1.2.3