void setSyscallReturn(ThreadContext *tc,
SyscallReturn return_value) override;
void clone(ThreadContext *old_tc, ThreadContext *new_tc,
- Process *process, TheISA::IntReg flags);
+ Process *process, TheISA::IntReg flags) override;
X86Process &
operator=(const X86Process &in)
void setSyscallArg(ThreadContext *tc, int i,
X86ISA::IntReg val) override;
void clone(ThreadContext *old_tc, ThreadContext *new_tc,
- Process *process, TheISA::IntReg flags);
+ Process *process, TheISA::IntReg flags) override;
};
class I386Process : public X86Process
void setSyscallArg(ThreadContext *tc, int i,
X86ISA::IntReg val) override;
void clone(ThreadContext *old_tc, ThreadContext *new_tc,
- Process *process, TheISA::IntReg flags);
+ Process *process, TheISA::IntReg flags) override;
};
/**
void replicatePage(Addr vaddr, Addr new_paddr, ThreadContext *old_tc,
ThreadContext *new_tc, bool alloc_page);
- void clone(ThreadContext *old_tc, ThreadContext *new_tc, Process *new_p,
- TheISA::IntReg flags);
+ virtual void clone(ThreadContext *old_tc, ThreadContext *new_tc,
+ Process *new_p, TheISA::IntReg flags);
// thread contexts associated with this process
std::vector<ContextID> contextIds;