84a85,99
> void clone(ThreadContext *old_tc, ThreadContext *new_tc,
> Process *process, TheISA::IntReg flags);
>
> X86Process &
> operator=(const X86Process &in)
> {
> if (this == &in)
> return *this;
>
> _gdtStart = in._gdtStart;
> _gdtSize = in._gdtSize;
> syscallDescs = in.syscallDescs;
>
> return *this;
> }
99a115,128
>
> VSyscallPage &
> operator=(const VSyscallPage &in)
> {
> if (this == &in)
> return *this;
>
> base = in.base;
> size = in.size;
> vtimeOffset = in.vtimeOffset;
> vgettimeofdayOffset = in.vgettimeofdayOffset;
>
> return *this;
> }
110a140,141
> void clone(ThreadContext *old_tc, ThreadContext *new_tc,
> Process *process, TheISA::IntReg flags);
125a157,170
>
> VSyscallPage &
> operator=(const VSyscallPage &in)
> {
> if (this == &in)
> return *this;
>
> base = in.base;
> size = in.size;
> vsyscallOffset = in.vsyscallOffset;
> vsysexitOffset = in.vsysexitOffset;
>
> return *this;
> }
136a182,183
> void clone(ThreadContext *old_tc, ThreadContext *new_tc,
> Process *process, TheISA::IntReg flags);