Solaris: Implement kernel thread counting

This commit is contained in:
Guy M. Broome 2018-03-27 14:26:24 -04:00 committed by Hisham Muhammad
parent c235b45cd6
commit 75598c1389
1 changed files with 3 additions and 1 deletions

View File

@ -413,6 +413,8 @@ void ProcessList_goThroughEntries(ProcessList* this) {
dir = opendir(PROCDIR);
if (!dir) return; // Is proc mounted?
// We always count the scheduler
this->kernelThreads = 1;
while ((entry = readdir(dir)) != NULL) {
addRunning = 0;
addTotal = 0;
@ -518,7 +520,7 @@ void ProcessList_goThroughEntries(ProcessList* this) {
ProcessList_enumerateLWPs(proc, name, this, tv);
}
proc->show = !(hideKernelThreads && sproc->kernel);
if (_pstatus.pr_flags & sproc->kernel) {
if (sproc->kernel) {
if (hideKernelThreads) {
addRunning = 0;
addTotal = 0;