From 60a7bd950b4c3a2b9bffed92f14fdd50f566222c Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Mon, 13 Oct 2003 16:09:33 -0400 Subject: CopyData and CopyString moved from kernel.cc to vtophys.cc kernel.cc and kernel.hh moved to kern/tru64 --HG-- extra : convert_revision : 1b9123af03960b602a2d52dfa7b714280f9995aa --- arch/alpha/arguments.hh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'arch/alpha/arguments.hh') diff --git a/arch/alpha/arguments.hh b/arch/alpha/arguments.hh index 69c69d0d7..9ac744e17 100644 --- a/arch/alpha/arguments.hh +++ b/arch/alpha/arguments.hh @@ -32,8 +32,9 @@ #include #include "sim/host.hh" -#include "targetarch/kernel.hh" +#include "kern/tru64/kernel.hh" #include "base/refcnt.hh" +#include "targetarch/vtophys.hh" class ExecContext; @@ -129,13 +130,13 @@ class AlphaArguments template operator T *() { T *buf = (T *)data->alloc(sizeof(T)); - Kernel::CopyData(xc, buf, getArg(), sizeof(T)); + CopyData(xc, buf, getArg(), sizeof(T)); return buf; } operator char *() { char *buf = data->alloc(2048); - Kernel::CopyString(xc, buf, getArg(), 2048); + CopyString(xc, buf, getArg(), 2048); return buf; } }; -- cgit v1.2.3