28 lines
658 B
C
28 lines
658 B
C
/*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*
|
|
* Copyright (C) 2001 - 2007 Tensilica Inc.
|
|
* Copyright (C) 2018 Cadence Design Systems Inc.
|
|
*/
|
|
|
|
#ifndef _ASM_SYSCALL_H
|
|
#define _ASM_SYSCALL_H
|
|
|
|
#include <uapi/linux/audit.h>
|
|
|
|
static inline int syscall_get_arch(void)
|
|
{
|
|
return AUDIT_ARCH_XTENSA;
|
|
}
|
|
|
|
struct pt_regs;
|
|
|
|
asmlinkage long xtensa_rt_sigreturn(struct pt_regs*);
|
|
asmlinkage long xtensa_shmat(int, char __user *, int);
|
|
asmlinkage long xtensa_fadvise64_64(int, int,
|
|
unsigned long long, unsigned long long);
|
|
|
|
#endif
|