diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2008-07-01 10:24:16 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2008-07-01 10:24:16 -0400 |
commit | 50e3e50e1ac592b357a47eecdc3c99a528172870 (patch) | |
tree | 1ee6c72dc10691ac920e793646e38c73049f3a8f /src/cpu/o3/thread_context.hh | |
parent | 9bd0bfe559d8c9633c5686ccf100ab921eb6eda2 (diff) | |
download | gem5-50e3e50e1ac592b357a47eecdc3c99a528172870.tar.xz |
Make the cached virtPort have a thread context so it can do everything that a newly created one can.
Diffstat (limited to 'src/cpu/o3/thread_context.hh')
-rwxr-xr-x | src/cpu/o3/thread_context.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/o3/thread_context.hh b/src/cpu/o3/thread_context.hh index e7bdc6de5..44e26729c 100755 --- a/src/cpu/o3/thread_context.hh +++ b/src/cpu/o3/thread_context.hh @@ -98,7 +98,7 @@ class O3ThreadContext : public ThreadContext void delVirtPort(VirtualPort *vp); - virtual void connectMemPorts() { thread->connectMemPorts(); } + virtual void connectMemPorts(ThreadContext *tc) { thread->connectMemPorts(tc); } #else virtual TranslatingPort *getMemPort() { return thread->getMemPort(); } |