From: Kevin Lim Date: Sun, 21 May 2006 05:55:58 +0000 (-0400) Subject: Threads start off in suspended status now (Korey's changes for SMT). X-Git-Tag: m5_2.0_beta1~36^2~108^2~13 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a7db55e9a88d204bb783b7b363faacaa1350ff3;p=gem5.git Threads start off in suspended status now (Korey's changes for SMT). --HG-- extra : convert_revision : ad726f9f258e1983d2af5057ff6e5f9d2a5dd072 --- diff --git a/kern/tru64/tru64.hh b/kern/tru64/tru64.hh index 112f00f31..b8adab8a8 100644 --- a/kern/tru64/tru64.hh +++ b/kern/tru64/tru64.hh @@ -1020,7 +1020,7 @@ class Tru64 { for (int i = 0; i < process->numCpus(); ++i) { ExecContext *xc = process->execContexts[i]; - if (xc->status() == ExecContext::Unallocated) { + if (xc->status() == ExecContext::Suspended) { // inactive context... grab it init_exec_context(xc, attrp, uniq_val);