diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-09-15 21:43:12 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-09-15 21:43:12 -0400 |
commit | e4fcef58518840c8191c468aff6d314175d68e21 (patch) | |
tree | 0da46d852ab27fd9c43db77da63f577ffa8218cb /src/kern/tru64 | |
parent | 8abab05c833bcba09ef0093a5fbfb77398c10bf3 (diff) | |
download | gem5-e4fcef58518840c8191c468aff6d314175d68e21.tar.xz |
Changes to correct stat behavior
--HG--
extra : convert_revision : 43e5788105738aebd79acb05301bb7da68bfe129
Diffstat (limited to 'src/kern/tru64')
-rw-r--r-- | src/kern/tru64/tru64.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/kern/tru64/tru64.hh b/src/kern/tru64/tru64.hh index d2b7c862f..63d4f3a9b 100644 --- a/src/kern/tru64/tru64.hh +++ b/src/kern/tru64/tru64.hh @@ -32,6 +32,7 @@ #ifndef __TRU64_HH__ #define __TRU64_HH__ #include "config/full_system.hh" +#include "kern/operatingsystem.hh" #if FULL_SYSTEM @@ -69,7 +70,8 @@ class TranslatingPort; /// functions, and syscall-number mappings specific to the Alpha Tru64 /// syscall interface. /// -class Tru64 { +class Tru64 : public OperatingSystem +{ public: |