From ca8598147835cc3bf4cb6125b4f32cbd941f1ae7 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 19 Apr 2009 04:15:32 -0700 Subject: SE mode: Make keeping track of the number of syscalls less hacky. --- src/arch/x86/linux/process.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/arch/x86/linux/process.cc') diff --git a/src/arch/x86/linux/process.cc b/src/arch/x86/linux/process.cc index da22d9851..1d109ae27 100644 --- a/src/arch/x86/linux/process.cc +++ b/src/arch/x86/linux/process.cc @@ -70,10 +70,10 @@ using namespace X86ISA; X86_64LinuxProcess::X86_64LinuxProcess(LiveProcessParams * params, ObjectFile *objFile) - : X86_64LiveProcess(params, objFile, syscallDescs, 273) + : X86_64LiveProcess(params, objFile, syscallDescs, numSyscalls) {} I386LinuxProcess::I386LinuxProcess(LiveProcessParams * params, ObjectFile *objFile) - : I386LiveProcess(params, objFile, syscallDescs, 324) + : I386LiveProcess(params, objFile, syscallDescs, numSyscalls) {} -- cgit v1.2.3