diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-10-16 05:06:40 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-10-16 05:06:40 -0700 |
commit | 464c485d0c7189e886d241ec36294d8d6b7c196e (patch) | |
tree | 5b05f5b3659944290ac2508dadd8f46afca463fb /src/cpu/o3 | |
parent | bcf664e5f922bf1f1cbdb4bed493a441f82df7f7 (diff) | |
download | gem5-464c485d0c7189e886d241ec36294d8d6b7c196e.tar.xz |
SE/FS: Include getMemPort in FS.
Diffstat (limited to 'src/cpu/o3')
-rwxr-xr-x | src/cpu/o3/thread_context.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/o3/thread_context.hh b/src/cpu/o3/thread_context.hh index afc0d7270..2688e75e1 100755 --- a/src/cpu/o3/thread_context.hh +++ b/src/cpu/o3/thread_context.hh @@ -99,12 +99,12 @@ class O3ThreadContext : public ThreadContext virtual void connectMemPorts(ThreadContext *tc) { thread->connectMemPorts(tc); } #else - virtual TranslatingPort *getMemPort() { return thread->getMemPort(); } - /** Returns a pointer to this thread's process. */ virtual Process *getProcessPtr() { return thread->getProcessPtr(); } #endif + virtual TranslatingPort *getMemPort() { return thread->getMemPort(); } + virtual VirtualPort *getVirtPort(); virtual FunctionalPort *getPhysPort() { return thread->getPhysPort(); } |