diff options
Diffstat (limited to 'src/sim/system.cc')
-rw-r--r-- | src/sim/system.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sim/system.cc b/src/sim/system.cc index fc2578f86..ffa8edaa6 100644 --- a/src/sim/system.cc +++ b/src/sim/system.cc @@ -291,7 +291,8 @@ System::numRunningContexts() threadContexts.cbegin(), threadContexts.cend(), [] (ThreadContext* tc) { - return tc->status() != ThreadContext::Halted; + return ((tc->status() != ThreadContext::Halted) && + (tc->status() != ThreadContext::Halting)); } ); } |