diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-05-21 01:55:58 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-05-21 01:55:58 -0400 |
commit | 5a7db55e9a88d204bb783b7b363faacaa1350ff3 (patch) | |
tree | 0e8e652ab4a7356215355dea7f7b71308b29bb91 | |
parent | e3d5588ca70c88318c1e41e438102034c92c561e (diff) | |
download | gem5-5a7db55e9a88d204bb783b7b363faacaa1350ff3.tar.xz |
Threads start off in suspended status now (Korey's changes for SMT).
--HG--
extra : convert_revision : ad726f9f258e1983d2af5057ff6e5f9d2a5dd072
-rw-r--r-- | kern/tru64/tru64.hh | 2 |
1 files changed, 1 insertions, 1 deletions
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); |