99a100
> bool warned; //!< Have we warned about unimplemented syscall?
107c108,109
< SuppressReturnValue = 1
---
> SuppressReturnValue = 1,
> WarnOnce = 2
112c114
< : name(_name), funcPtr(_funcPtr), flags(_flags)
---
> : name(_name), funcPtr(_funcPtr), flags(_flags), warned(false)
117a120,122
>
> /// Is the WarnOnce flag set?
> bool warnOnce() const { return (flags & WarnOnce); }
140,141d144
< SyscallReturn ignoreWarnOnceFunc(SyscallDesc *desc, int num,
< LiveProcess *p, ThreadContext *tc);