diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-03-10 17:01:58 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-03-10 17:01:58 -0500 |
commit | 2952ea7c82ced930bac23068acacf071b908aa12 (patch) | |
tree | 321a7e9152eb877db97ab81b959656213a468832 /arch/alpha/linux/process.cc | |
parent | 72d870c60fd3ea12265cc8c8ba71ce1a972aba7a (diff) | |
parent | 5ba4c8e96ef694431ff1715fbea7cd0e70e6b072 (diff) | |
download | gem5-2952ea7c82ced930bac23068acacf071b908aa12.tar.xz |
Merge m5.eecs.umich.edu:/bk/newmem
into ewok.(none):/home/gblack/m5/newmem
--HG--
extra : convert_revision : 58a5ae14fc8ac697206a3bfa1cf543a3579123d4
Diffstat (limited to 'arch/alpha/linux/process.cc')
-rw-r--r-- | arch/alpha/linux/process.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/alpha/linux/process.cc b/arch/alpha/linux/process.cc index d40895921..704773fdf 100644 --- a/arch/alpha/linux/process.cc +++ b/arch/alpha/linux/process.cc @@ -54,7 +54,7 @@ unameFunc(SyscallDesc *desc, int callnum, Process *process, strcpy(name->version, "#1 Mon Aug 18 11:32:15 EDT 2003"); strcpy(name->machine, "alpha"); - name.copyOut(xc->port); + name.copyOut(xc->getMemPort()); return 0; } @@ -74,7 +74,7 @@ osf_getsysinfoFunc(SyscallDesc *desc, int callnum, Process *process, TypedBufferArg<uint64_t> fpcr(xc->getSyscallArg(1)); // I don't think this exactly matches the HW FPCR *fpcr = 0; - fpcr.copyOut(xc->port); + fpcr.copyOut(xc->getMemPort()); return 0; } @@ -100,7 +100,7 @@ osf_setsysinfoFunc(SyscallDesc *desc, int callnum, Process *process, case 14: { // SSI_IEEE_FP_CONTROL TypedBufferArg<uint64_t> fpcr(xc->getSyscallArg(1)); // I don't think this exactly matches the HW FPCR - fpcr.copyIn(xc->port); + fpcr.copyIn(xc->getMemPort()); DPRINTFR(SyscallVerbose, "osf_setsysinfo(SSI_IEEE_FP_CONTROL): " " setting FPCR to 0x%x\n", gtoh(*(uint64_t*)fpcr)); return 0; |