1842bdfdba
New syscalls are not yet widely distributed. Add them to qemu linux-headers include directory. Update based on v4.3-rc3 kernel headers. Exclude mips for now, which is more problematic due to extra header inclusion and probably unnecessary here. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Tested-by: Thibaut Collet <thibaut.collet@6wind.com>
16 lines
296 B
C
16 lines
296 B
C
#ifndef _ASM_X86_UNISTD_H
|
|
#define _ASM_X86_UNISTD_H
|
|
|
|
/* x32 syscall flag bit */
|
|
#define __X32_SYSCALL_BIT 0x40000000
|
|
|
|
# ifdef __i386__
|
|
# include <asm/unistd_32.h>
|
|
# elif defined(__ILP32__)
|
|
# include <asm/unistd_x32.h>
|
|
# else
|
|
# include <asm/unistd_64.h>
|
|
# endif
|
|
|
|
#endif /* _ASM_X86_UNISTD_H */
|