diff options
author | Korey Sewell <ksewell@umich.edu> | 2010-01-31 18:28:12 -0500 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2010-01-31 18:28:12 -0500 |
commit | b4e0ef78379dd5bab0ee6ec824bca3f51dd484c6 (patch) | |
tree | cffa5e792f60039a4a2289fadb2d057d5084478d /src/cpu/inorder/thread_context.hh | |
parent | 5e0b8337ed9c8aa975cd44df5565c2c3dde0c267 (diff) | |
download | gem5-b4e0ef78379dd5bab0ee6ec824bca3f51dd484c6.tar.xz |
inorder: set thread status'
set Active/Suspended/Halted status for threads. useful for system when determining
if/when to exit simulation
Diffstat (limited to 'src/cpu/inorder/thread_context.hh')
-rw-r--r-- | src/cpu/inorder/thread_context.hh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cpu/inorder/thread_context.hh b/src/cpu/inorder/thread_context.hh index 820f3077f..6dd5f192f 100644 --- a/src/cpu/inorder/thread_context.hh +++ b/src/cpu/inorder/thread_context.hh @@ -64,7 +64,6 @@ class InOrderThreadContext : public ThreadContext /** Pointer to the thread state that this TC corrseponds to. */ InOrderThreadState *thread; - /** Returns a pointer to the ITB. */ /** @TODO: PERF: Should we bind this to a pointer in constructor? */ TheISA::TLB *getITBPtr() { return cpu->getITBPtr(); } |