diff options
Diffstat (limited to 'src/cpu/thread_state.hh')
-rw-r--r-- | src/cpu/thread_state.hh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/cpu/thread_state.hh b/src/cpu/thread_state.hh index 200633922..e00c86f55 100644 --- a/src/cpu/thread_state.hh +++ b/src/cpu/thread_state.hh @@ -47,6 +47,9 @@ namespace Kernel { class Checkpoint; +class FSTranslatingPortProxy; +class SETranslatingPortProxy; + /** * Struct for holding general thread state that is needed across CPU * models. This includes things such as pointers to the process, @@ -100,7 +103,7 @@ struct ThreadState : public Serializable { PortProxy &getPhysProxy(); - FSTranslatingPortProxy &getVirtProxy(); + PortProxy &getVirtProxy(); Process *getProcessPtr() { return process; } @@ -119,7 +122,7 @@ struct ThreadState : public Serializable { } } - SETranslatingPortProxy &getMemProxy(); + PortProxy &getMemProxy(); /** Reads the number of instructions functionally executed and * committed. |