summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--solaris/SolarisProcessList.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/solaris/SolarisProcessList.c b/solaris/SolarisProcessList.c
index cf2c440c..c42f5b0a 100644
--- a/solaris/SolarisProcessList.c
+++ b/solaris/SolarisProcessList.c
@@ -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;