57c57
< unameFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
---
> unameFunc(SyscallDesc *desc, int callnum, Process *process,
75c75
< archPrctlFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
---
> archPrctlFunc(SyscallDesc *desc, int callnum, Process *process,
142c142
< LiveProcess *process, ThreadContext *tc)
---
> Process *process, ThreadContext *tc)
148,149c148,149
< X86LiveProcess *x86lp = dynamic_cast<X86LiveProcess *>(process);
< assert(x86lp);
---
> X86Process *x86p = dynamic_cast<X86Process *>(process);
> assert(x86p);
151c151
< assert((maxTLSEntry + 1) * sizeof(uint64_t) <= x86lp->gdtSize());
---
> assert((maxTLSEntry + 1) * sizeof(uint64_t) <= x86p->gdtSize());
156,157c156,157
< gdt(x86lp->gdtStart() + minTLSEntry * sizeof(uint64_t),
< numTLSEntries * sizeof(uint64_t));
---
> gdt(x86p->gdtStart() + minTLSEntry * sizeof(uint64_t),
> numTLSEntries * sizeof(uint64_t));
539,542c539,542
< X86_64LinuxProcess::X86_64LinuxProcess(LiveProcessParams * params,
< ObjectFile *objFile)
< : X86_64LiveProcess(params, objFile, syscallDescs64,
< sizeof(syscallDescs64) / sizeof(SyscallDesc))
---
> X86_64LinuxProcess::X86_64LinuxProcess(ProcessParams * params,
> ObjectFile *objFile)
> : X86_64Process(params, objFile, syscallDescs64,
> sizeof(syscallDescs64) / sizeof(SyscallDesc))
872,875c872,874
< I386LinuxProcess::I386LinuxProcess(LiveProcessParams * params,
< ObjectFile *objFile)
< : I386LiveProcess(params, objFile, syscallDescs32,
< sizeof(syscallDescs32) / sizeof(SyscallDesc))
---
> I386LinuxProcess::I386LinuxProcess(ProcessParams * params, ObjectFile *objFile)
> : I386Process(params, objFile, syscallDescs32,
> sizeof(syscallDescs32) / sizeof(SyscallDesc))