summaryrefslogtreecommitdiff
path: root/src/arch/x86/process.hh
diff options
context:
space:
mode:
authorBrandon Potter <brandon.potter@amd.com>2017-02-27 14:09:30 -0500
committerBrandon Potter <brandon.potter@amd.com>2017-02-27 14:09:30 -0500
commitf5656738dc3ded25ba8a269efff70e8f12fc22ee (patch)
treea963f0539685bd6cc9c4f045f616745514a9e377 /src/arch/x86/process.hh
parent8602aea4e5edd0cb455fca03237e430babe0b6f2 (diff)
downloadgem5-f5656738dc3ded25ba8a269efff70e8f12fc22ee.tar.xz
x86: remove unnecessary parameter from functions
Diffstat (limited to 'src/arch/x86/process.hh')
-rw-r--r--src/arch/x86/process.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/x86/process.hh b/src/arch/x86/process.hh
index ef0329329..9e3fafbdd 100644
--- a/src/arch/x86/process.hh
+++ b/src/arch/x86/process.hh
@@ -70,7 +70,7 @@ namespace X86ISA
template<class IntType>
void argsInit(int pageSize,
- std::vector<AuxVector<IntType> > extraAuxvs);
+ std::vector<AuxVector<IntType> > extraAuxvs);
public:
Addr gdtStart()
@@ -101,7 +101,7 @@ namespace X86ISA
VSyscallPage vsyscallPage;
public:
- void argsInit(int intSize, int pageSize);
+ void argsInit(int pageSize);
void initState();
X86ISA::IntReg getSyscallArg(ThreadContext *tc, int &i);
@@ -127,7 +127,7 @@ namespace X86ISA
VSyscallPage vsyscallPage;
public:
- void argsInit(int intSize, int pageSize);
+ void argsInit(int pageSize);
void initState();
void syscall(int64_t callnum, ThreadContext *tc, Fault *fault);