Filled in a stub header file for setting the result of a syscall.

--HG--
extra : convert_revision : f0a2cdf7d669834b90444fc390b0aceede474737
This commit is contained in:
Gabe Black 2007-03-05 14:53:15 +00:00
parent 43b8f51bb8
commit 7ed7d6e80d

View file

@ -58,10 +58,18 @@
#ifndef __ARCH_X86_SYSCALLRETURN_HH__
#define __ARCH_X86_SYSCALLRETURN_HH__
#error X86 is not yet supported!
#include "base/misc.hh"
#include "sim/syscallreturn.hh"
class ThreadContext;
namespace X86ISA
{
static inline void setSyscallReturn(SyscallReturn return_value,
ThreadContext * tc)
{
panic("setSyscallReturn not implemented!\n");
}
};
#endif // __ARCH_X86_SYSCALLRETURN_HH__