58c58
< class X86LiveProcess : public LiveProcess
---
> class X86Process : public Process
67,68c67,68
< X86LiveProcess(LiveProcessParams * params, ObjectFile *objFile,
< SyscallDesc *_syscallDescs, int _numSyscallDescs);
---
> X86Process(ProcessParams * params, ObjectFile *objFile,
> SyscallDesc *_syscallDescs, int _numSyscallDescs);
86c86
< class X86_64LiveProcess : public X86LiveProcess
---
> class X86_64Process : public X86Process
89,90c89,90
< X86_64LiveProcess(LiveProcessParams *params, ObjectFile *objFile,
< SyscallDesc *_syscallDescs, int _numSyscallDescs);
---
> X86_64Process(ProcessParams *params, ObjectFile *objFile,
> SyscallDesc *_syscallDescs, int _numSyscallDescs);
108c108
< using LiveProcess::getSyscallArg;
---
> using Process::getSyscallArg;
112c112
< class I386LiveProcess : public X86LiveProcess
---
> class I386Process : public X86Process
115,116c115,116
< I386LiveProcess(LiveProcessParams *params, ObjectFile *objFile,
< SyscallDesc *_syscallDescs, int _numSyscallDescs);
---
> I386Process(ProcessParams *params, ObjectFile *objFile,
> SyscallDesc *_syscallDescs, int _numSyscallDescs);