aboutsummaryrefslogtreecommitdiffstats
path: root/TasksMeter.c
diff options
context:
space:
mode:
authorDaniel Lange <DLange@git.local>2021-01-11 20:43:27 +0100
committerDaniel Lange <DLange@git.local>2021-01-11 20:43:27 +0100
commitc55320e9e2a8916e911bcd39ab37b79e3a7d03b2 (patch)
treed6be9a09fdf7d6dc155de3429a70697ee2bb43b0 /TasksMeter.c
parent65357c8c46154de4e4eca14075bfe5523bb5fc14 (diff)
downloaddebian_htop-c55320e9e2a8916e911bcd39ab37b79e3a7d03b2.tar.gz
debian_htop-c55320e9e2a8916e911bcd39ab37b79e3a7d03b2.tar.bz2
debian_htop-c55320e9e2a8916e911bcd39ab37b79e3a7d03b2.zip
New upstream version 3.0.5upstream/3.0.5
Diffstat (limited to 'TasksMeter.c')
-rw-r--r--TasksMeter.c20
1 files changed, 10 insertions, 10 deletions
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 = {

© 2014-2024 Faster IT GmbH | imprint | privacy policy