From e8e9f9731281e8c2ecb50a9aa318a65402cbee5c Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 16 Oct 2011 02:59:53 -0700 Subject: CPU: Make physPort and getPhysPort available in SE mode. --- src/cpu/inorder/thread_context.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cpu/inorder') diff --git a/src/cpu/inorder/thread_context.hh b/src/cpu/inorder/thread_context.hh index 7ec17cb77..2d8d8ba03 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; } - FunctionalPort *getPhysPort() { return thread->getPhysPort(); } - VirtualPort *getVirtPort(); void connectMemPorts(ThreadContext *tc) @@ -153,6 +151,8 @@ class InOrderThreadContext : public ThreadContext Process *getProcessPtr() { return thread->getProcessPtr(); } #endif + FunctionalPort *getPhysPort() { return thread->getPhysPort(); } + /** Returns this thread's status. */ Status status() const { return thread->status(); } -- cgit v1.2.3