diff options
author | Nathan Binkert <binkertn@umich.edu> | 2004-07-01 18:00:18 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2004-07-01 18:00:18 -0400 |
commit | 671cff59372695309b62f2a4f6aa68269f56584a (patch) | |
tree | 57aeec43624eff8fa284d292877506c4ab9533e2 /arch/alpha/vtophys.hh | |
parent | 12e8ab2b64e12307c6550e20274e49f6092bf4f7 (diff) | |
download | gem5-671cff59372695309b62f2a4f6aa68269f56584a.tar.xz |
rename CopyData to CopyOut and implement CopyIn to copy data
from the simulator into the simulatee
kern/tru64/dump_mbuf.cc:
rename CopyData -> CopyOut
--HG--
extra : convert_revision : e3ef27a5762dfc495dcb84a372470464c27557d2
Diffstat (limited to 'arch/alpha/vtophys.hh')
-rw-r--r-- | arch/alpha/vtophys.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/alpha/vtophys.hh b/arch/alpha/vtophys.hh index 497a53f0d..7c22e3371 100644 --- a/arch/alpha/vtophys.hh +++ b/arch/alpha/vtophys.hh @@ -44,7 +44,8 @@ Addr vtophys(ExecContext *xc, Addr vaddr); uint8_t *vtomem(ExecContext *xc, Addr vaddr, size_t len); uint8_t *ptomem(ExecContext *xc, Addr paddr, size_t len); -void CopyData(ExecContext *xc, void *dst, Addr vaddr, size_t len); +void CopyOut(ExecContext *xc, void *dst, Addr src, size_t len); +void CopyIn(ExecContext *xc, Addr dst, void *src, size_t len); void CopyString(ExecContext *xc, char *dst, Addr vaddr, size_t maxlen); #endif // __VTOPHYS_H__ |