mirror of https://github.com/xzeldon/htop.git
Sets a non-NULL process state in case of kvm_getlwps(3) returns NULL. Thanks @cgzone.
This commit is contained in:
parent
3770769ed1
commit
fa65c30976
|
@ -212,21 +212,24 @@ static void NetBSDProcessList_scanProcs(NetBSDProcessList* this) {
|
||||||
switch (kproc->p_realstat) {
|
switch (kproc->p_realstat) {
|
||||||
case SIDL: proc->state = 'I'; break;
|
case SIDL: proc->state = 'I'; break;
|
||||||
case SACTIVE:
|
case SACTIVE:
|
||||||
// We only consider the first LWP with a one of the below states.
|
// We only consider the first LWP with a one of the below states.
|
||||||
for (int j = 0; j < nlwps; j++) {
|
for (int j = 0; j < nlwps; j++) {
|
||||||
if (klwps) {
|
if (klwps) {
|
||||||
switch (klwps[j].l_stat) {
|
switch (klwps[j].l_stat) {
|
||||||
case LSONPROC: proc->state = 'P'; break;
|
case LSONPROC: proc->state = 'P'; break;
|
||||||
case LSRUN: proc->state = 'R'; break;
|
case LSRUN: proc->state = 'R'; break;
|
||||||
case LSSLEEP: proc->state = 'S'; break;
|
case LSSLEEP: proc->state = 'S'; break;
|
||||||
case LSSTOP: proc->state = 'T'; break;
|
case LSSTOP: proc->state = 'T'; break;
|
||||||
default: proc->state = '?';
|
default: proc->state = '?';
|
||||||
|
}
|
||||||
|
if (proc->state != '?')
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
proc->state = '?';
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
if (proc->state != '?')
|
}
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case SSTOP: proc->state = 'T'; break;
|
case SSTOP: proc->state = 'T'; break;
|
||||||
case SZOMB: proc->state = 'Z'; break;
|
case SZOMB: proc->state = 'Z'; break;
|
||||||
case SDEAD: proc->state = 'D'; break;
|
case SDEAD: proc->state = 'D'; break;
|
||||||
|
|
Loading…
Reference in New Issue