2021-09-23 09:56:26 +03:00
|
|
|
/* $NetBSD: linux_syscall.h,v 1.44 2021/09/23 06:56:27 ryo Exp $ */
|
1998-10-01 08:20:16 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Eric Haszlakiewicz.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_SYSCALL_H
|
|
|
|
#define _LINUX_SYSCALL_H
|
|
|
|
|
1998-10-01 22:23:37 +04:00
|
|
|
#if defined(__i386__)
|
1998-10-04 00:17:36 +04:00
|
|
|
#include <compat/linux/arch/i386/linux_syscall.h>
|
1998-12-15 22:31:30 +03:00
|
|
|
#elif defined(__m68k__)
|
|
|
|
#include <compat/linux/arch/m68k/linux_syscall.h>
|
1998-10-01 08:20:16 +04:00
|
|
|
#elif defined(__alpha__)
|
1998-10-04 00:17:36 +04:00
|
|
|
#include <compat/linux/arch/alpha/linux_syscall.h>
|
2001-01-19 04:44:46 +03:00
|
|
|
#elif defined(__powerpc__)
|
|
|
|
#include <compat/linux/arch/powerpc/linux_syscall.h>
|
2001-09-23 01:25:49 +04:00
|
|
|
#elif defined(__mips__)
|
|
|
|
#include <compat/linux/arch/mips/linux_syscall.h>
|
2021-09-23 09:56:26 +03:00
|
|
|
#elif defined(__aarch64__)
|
|
|
|
#include <compat/linux/arch/aarch64/linux_syscall.h>
|
2002-01-15 02:14:32 +03:00
|
|
|
#elif defined(__arm__)
|
|
|
|
#include <compat/linux/arch/arm/linux_syscall.h>
|
2005-05-16 01:44:41 +04:00
|
|
|
#elif defined(__amd64__)
|
|
|
|
#include <compat/linux/arch/amd64/linux_syscall.h>
|
1998-10-01 08:20:16 +04:00
|
|
|
#else
|
1998-10-01 22:23:37 +04:00
|
|
|
#define LINUX_SYS_MAXSYSCALL 0
|
1998-10-01 08:20:16 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* !_LINUX_SYSCALL_H */
|