Path: blob/master/tools/arch/arc/include/uapi/asm/unistd.h
29278 views
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1/*2* Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)3*4* This program is free software; you can redistribute it and/or modify5* it under the terms of the GNU General Public License version 2 as6* published by the Free Software Foundation.7*/89/******** no-legacy-syscalls-ABI *******/1011/*12* Non-typical guard macro to enable inclusion twice in ARCH sys.c13* That is how the Generic syscall wrapper generator works14*/15#if !defined(_UAPI_ASM_ARC_UNISTD_H) || defined(__SYSCALL)16#define _UAPI_ASM_ARC_UNISTD_H1718#define __ARCH_WANT_RENAMEAT19#define __ARCH_WANT_STAT6420#define __ARCH_WANT_SET_GET_RLIMIT21#define __ARCH_WANT_SYS_EXECVE22#define __ARCH_WANT_SYS_CLONE23#define __ARCH_WANT_SYS_VFORK24#define __ARCH_WANT_SYS_FORK25#define __ARCH_WANT_TIME32_SYSCALLS2627#define sys_mmap2 sys_mmap_pgoff2829#include <asm-generic/unistd.h>3031#define NR_syscalls __NR_syscalls3233/* Generic syscall (fs/filesystems.c - lost in asm-generic/unistd.h */34#define __NR_sysfs (__NR_arch_specific_syscall + 3)3536/* ARC specific syscall */37#define __NR_cacheflush (__NR_arch_specific_syscall + 0)38#define __NR_arc_settls (__NR_arch_specific_syscall + 1)39#define __NR_arc_gettls (__NR_arch_specific_syscall + 2)40#define __NR_arc_usr_cmpxchg (__NR_arch_specific_syscall + 4)4142__SYSCALL(__NR_cacheflush, sys_cacheflush)43__SYSCALL(__NR_arc_settls, sys_arc_settls)44__SYSCALL(__NR_arc_gettls, sys_arc_gettls)45__SYSCALL(__NR_arc_usr_cmpxchg, sys_arc_usr_cmpxchg)46__SYSCALL(__NR_sysfs, sys_sysfs)4748#undef __SYSCALL4950#endif515253