summaryrefslogtreecommitdiffstats
path: root/Process.c
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2023-11-23 12:22:02 +0100
committerBenBE <BenBE@geshi.org>2023-12-26 15:14:19 +0100
commit6aa9ef2726e42c4ae062b55be4d5cc015767d997 (patch)
treed5bd033946b404fa99b70b0b1c560725cef302bf /Process.c
parenta98fc47ffe67e88b1a83f94382795b8787a9bfe8 (diff)
Fix code style
Diffstat (limited to 'Process.c')
-rw-r--r--Process.c54
1 files changed, 27 insertions, 27 deletions
diff --git a/Process.c b/Process.c
index a80d1ee8..4766c115 100644
--- a/Process.c
+++ b/Process.c
@@ -47,7 +47,7 @@ void Process_fillStarttimeBuffer(Process* this) {
strftime(this->starttime_show,
sizeof(this->starttime_show) - 1,
- (this->starttime_ctime > now - 86400) ? "%R " : (this->starttime_ctime > now - 364*86400) ? "%b%d " : " %Y ",
+ (this->starttime_ctime > now - 86400) ? "%R " : (this->starttime_ctime > now - 364 * 86400) ? "%b%d " : " %Y ",
&date);
}
@@ -650,8 +650,8 @@ void Process_writeField(const Process* this, RichString* str, RowField field) {
case NICE:
xSnprintf(buffer, n, "%3ld ", this->nice);
attr = this->nice < 0 ? CRT_colors[PROCESS_HIGH_PRIORITY]
- : this->nice > 0 ? CRT_colors[PROCESS_LOW_PRIORITY]
- : CRT_colors[PROCESS_SHADOW];
+ : this->nice > 0 ? CRT_colors[PROCESS_LOW_PRIORITY]
+ : CRT_colors[PROCESS_SHADOW];
break;
case NLWP:
if (this->nlwp == 1)
@@ -690,30 +690,30 @@ void Process_writeField(const Process* this, RichString* str, RowField field) {
case STATE:
xSnprintf(buffer, n, "%c ", processStateChar(this->state));
switch (this->state) {
- case RUNNABLE:
- case RUNNING:
- case TRACED:
- attr = CRT_colors[PROCESS_RUN_STATE];
- break;
-
- case BLOCKED:
- case DEFUNCT:
- case STOPPED:
- case UNINTERRUPTIBLE_WAIT:
- case ZOMBIE:
- attr = CRT_colors[PROCESS_D_STATE];
- break;
-
- case QUEUED:
- case WAITING:
- case IDLE:
- case SLEEPING:
- attr = CRT_colors[PROCESS_SHADOW];
- break;
-
- case UNKNOWN:
- case PAGING:
- break;
+ case RUNNABLE:
+ case RUNNING:
+ case TRACED:
+ attr = CRT_colors[PROCESS_RUN_STATE];
+ break;
+
+ case BLOCKED:
+ case DEFUNCT:
+ case STOPPED:
+ case UNINTERRUPTIBLE_WAIT:
+ case ZOMBIE:
+ attr = CRT_colors[PROCESS_D_STATE];
+ break;
+
+ case QUEUED:
+ case WAITING:
+ case IDLE:
+ case SLEEPING:
+ attr = CRT_colors[PROCESS_SHADOW];
+ break;
+
+ case UNKNOWN:
+ case PAGING:
+ break;
}
break;
case ST_UID: xSnprintf(buffer, n, "%*d ", Process_uidDigits, this->st_uid); break;

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