diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-06 18:28:10 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-06 18:28:10 -0500 |
commit | e39de58d21723df527ec979cde1df29980fab234 (patch) | |
tree | be13ea6337a491acb44e90d62ba034ee35187755 /src/kern/linux | |
parent | 1ffff78ca90d04622da78e7d1212148762bccef6 (diff) | |
download | gem5-e39de58d21723df527ec979cde1df29980fab234.tar.xz |
Took the Alpha prefix off of AlphaArguments, and made sure it was being used from TheISA:: rather than AlphaISA::
--HG--
extra : convert_revision : 17c143d3cbc2f58a7a9d01366a8f649810ff7f33
Diffstat (limited to 'src/kern/linux')
-rw-r--r-- | src/kern/linux/events.cc | 2 | ||||
-rw-r--r-- | src/kern/linux/printk.cc | 2 | ||||
-rw-r--r-- | src/kern/linux/printk.hh | 6 |
3 files changed, 6 insertions, 4 deletions
diff --git a/src/kern/linux/events.cc b/src/kern/linux/events.cc index 289ece5ce..ba52e040a 100644 --- a/src/kern/linux/events.cc +++ b/src/kern/linux/events.cc @@ -49,7 +49,7 @@ DebugPrintkEvent::process(ThreadContext *tc) DPRINTFN(""); } - AlphaISA::AlphaArguments args(tc); + TheISA::Arguments args(tc); Printk(args); SkipFuncEvent::process(tc); } diff --git a/src/kern/linux/printk.cc b/src/kern/linux/printk.cc index 004d1be2f..ea3d59f19 100644 --- a/src/kern/linux/printk.cc +++ b/src/kern/linux/printk.cc @@ -39,7 +39,7 @@ using namespace std; void -Printk(AlphaISA::AlphaArguments args) +Printk(TheISA::Arguments args) { char *p = (char *)args++; diff --git a/src/kern/linux/printk.hh b/src/kern/linux/printk.hh index 5ddf0a018..17d59b765 100644 --- a/src/kern/linux/printk.hh +++ b/src/kern/linux/printk.hh @@ -32,8 +32,10 @@ #ifndef __PRINTK_HH__ #define __PRINTK_HH__ -class AlphaISA::AlphaArguments; +#include "arch/isa_specific.hh" -void Printk(AlphaISA::AlphaArguments args); +class TheISA::Arguments; + +void Printk(TheISA::Arguments args); #endif // __PRINTK_HH__ |