mirror of
https://github.com/xzeldon/htop.git
synced 2025-04-05 02:47:07 +03:00
Solaris: Implement kernel thread counting
This commit is contained in:
parent
c235b45cd6
commit
75598c1389
@ -413,6 +413,8 @@ void ProcessList_goThroughEntries(ProcessList* this) {
|
|||||||
|
|
||||||
dir = opendir(PROCDIR);
|
dir = opendir(PROCDIR);
|
||||||
if (!dir) return; // Is proc mounted?
|
if (!dir) return; // Is proc mounted?
|
||||||
|
// We always count the scheduler
|
||||||
|
this->kernelThreads = 1;
|
||||||
while ((entry = readdir(dir)) != NULL) {
|
while ((entry = readdir(dir)) != NULL) {
|
||||||
addRunning = 0;
|
addRunning = 0;
|
||||||
addTotal = 0;
|
addTotal = 0;
|
||||||
@ -518,7 +520,7 @@ void ProcessList_goThroughEntries(ProcessList* this) {
|
|||||||
ProcessList_enumerateLWPs(proc, name, this, tv);
|
ProcessList_enumerateLWPs(proc, name, this, tv);
|
||||||
}
|
}
|
||||||
proc->show = !(hideKernelThreads && sproc->kernel);
|
proc->show = !(hideKernelThreads && sproc->kernel);
|
||||||
if (_pstatus.pr_flags & sproc->kernel) {
|
if (sproc->kernel) {
|
||||||
if (hideKernelThreads) {
|
if (hideKernelThreads) {
|
||||||
addRunning = 0;
|
addRunning = 0;
|
||||||
addTotal = 0;
|
addTotal = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user