diff options
author | Korey Sewell <ksewell@umich.edu> | 2009-09-17 15:59:43 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2009-09-17 15:59:43 -0400 |
commit | b7094ec38b8ec2f4de1fdf3d60a0f5953efa3e06 (patch) | |
tree | 2aaf0673fb621d2a90d15b6df8689477aead372a /src/arch/mips/linux | |
parent | 6f7e1961131250817f6b73f5ee8cf7902bb4bba0 (diff) | |
download | gem5-b7094ec38b8ec2f4de1fdf3d60a0f5953efa3e06.tar.xz |
mips: fix command line arguments
arguments were not being saved correctly into M5 memory
Diffstat (limited to 'src/arch/mips/linux')
-rw-r--r-- | src/arch/mips/linux/process.cc | 6 | ||||
-rw-r--r-- | src/arch/mips/linux/process.hh | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/src/arch/mips/linux/process.cc b/src/arch/mips/linux/process.cc index 0fa3c382a..dde3a4efd 100644 --- a/src/arch/mips/linux/process.cc +++ b/src/arch/mips/linux/process.cc @@ -413,12 +413,6 @@ MipsLinuxProcess::MipsLinuxProcess(LiveProcessParams * params, Num_Syscall_Descs(sizeof(syscallDescs) / sizeof(SyscallDesc)) { } -void -MipsLinuxProcess::startup() -{ - MipsLiveProcess::argsInit(MachineBytes, VMPageSize); -} - SyscallDesc* MipsLinuxProcess::getDesc(int callnum) { diff --git a/src/arch/mips/linux/process.hh b/src/arch/mips/linux/process.hh index 5afde2be1..8c45014e0 100644 --- a/src/arch/mips/linux/process.hh +++ b/src/arch/mips/linux/process.hh @@ -43,8 +43,6 @@ class MipsLinuxProcess : public MipsLiveProcess /// Constructor. MipsLinuxProcess(LiveProcessParams * params, ObjectFile *objFile); - void startup(); - virtual SyscallDesc* getDesc(int callnum); /// The target system's hostname. |