mirror of
https://github.com/xzeldon/htop.git
synced 2025-04-05 02:47:07 +03:00
show names of zombie processes properly
This commit is contained in:
parent
36ef1a93be
commit
8bdec7155e
@ -625,7 +625,10 @@ static bool ProcessList_processEntries(ProcessList* this, const char* dirname, P
|
|||||||
ProcessList_add(this, process);
|
ProcessList_add(this, process);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Process_isThread(process)) {
|
if (process->state == 'Z') {
|
||||||
|
free(process->comm);
|
||||||
|
process->comm = String_copy(command);
|
||||||
|
} else if (Process_isThread(process)) {
|
||||||
if (this->showThreadNames || Process_isKernelThread(process) || process->state == 'Z') {
|
if (this->showThreadNames || Process_isKernelThread(process) || process->state == 'Z') {
|
||||||
free(process->comm);
|
free(process->comm);
|
||||||
process->comm = String_copy(command);
|
process->comm = String_copy(command);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user