diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-10-16 05:06:39 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-10-16 05:06:39 -0700 |
commit | 3595b0c5a1a3e398a7efae932cd4175cd1ca3f0e (patch) | |
tree | 651320e1a0c7fab8755bab36ba8f49980c1e1e4c /src/cpu/inorder/thread_context.hh | |
parent | 79ba4b65957ed87907cacadc131f94628277b8db (diff) | |
download | gem5-3595b0c5a1a3e398a7efae932cd4175cd1ca3f0e.tar.xz |
SE/FS: Build/expose vport in SE mode.
Diffstat (limited to 'src/cpu/inorder/thread_context.hh')
-rw-r--r-- | src/cpu/inorder/thread_context.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cpu/inorder/thread_context.hh b/src/cpu/inorder/thread_context.hh index 2d8d8ba03..2586d9372 100644 --- a/src/cpu/inorder/thread_context.hh +++ b/src/cpu/inorder/thread_context.hh @@ -118,8 +118,6 @@ class InOrderThreadContext : public ThreadContext TheISA::Kernel::Statistics *getKernelStats() { return thread->kernelStats; } - VirtualPort *getVirtPort(); - void connectMemPorts(ThreadContext *tc) { thread->connectMemPorts(tc); } @@ -151,6 +149,7 @@ class InOrderThreadContext : public ThreadContext Process *getProcessPtr() { return thread->getProcessPtr(); } #endif + VirtualPort *getVirtPort(); FunctionalPort *getPhysPort() { return thread->getPhysPort(); } /** Returns this thread's status. */ |