mirror of https://github.com/xzeldon/htop.git
Fix column misalignment for priority -101 threads
BFS-patched kernels can have kernel threads with priority -101. This change makes priority -101 display as "RT", just like priority -100. Related: https://github.com/hishamhm/htop/issues/314
This commit is contained in:
parent
6d4df3d138
commit
07086fcf77
|
@ -429,7 +429,7 @@ void Process_writeField(Process* this, RichString* str, ProcessField field) {
|
|||
case PID: snprintf(buffer, n, Process_pidFormat, this->pid); break;
|
||||
case PPID: snprintf(buffer, n, Process_pidFormat, this->ppid); break;
|
||||
case PRIORITY: {
|
||||
if(this->priority == -100)
|
||||
if(this->priority <= -100)
|
||||
snprintf(buffer, n, " RT ");
|
||||
else
|
||||
snprintf(buffer, n, "%3ld ", this->priority);
|
||||
|
|
Loading…
Reference in New Issue