aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-xtensa/syscall.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-xtensa/syscall.h')
-rw-r--r--include/asm-xtensa/syscall.h22
1 files changed, 21 insertions, 1 deletions
diff --git a/include/asm-xtensa/syscall.h b/include/asm-xtensa/syscall.h
index 6cb0d42f11c8..ea9b5132215e 100644
--- a/include/asm-xtensa/syscall.h
+++ b/include/asm-xtensa/syscall.h
@@ -1,3 +1,13 @@
1/*
2 * include/asm-xtensa/syscall.h
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 2001 - 2007 Tensilica Inc.
9 */
10
1struct pt_regs; 11struct pt_regs;
2struct sigaction; 12struct sigaction;
3asmlinkage long xtensa_execve(char*, char**, char**, struct pt_regs*); 13asmlinkage long xtensa_execve(char*, char**, char**, struct pt_regs*);
@@ -17,4 +27,14 @@ asmlinkage long sys_rt_sigaction(int,
17 const struct sigaction __user *, 27 const struct sigaction __user *,
18 struct sigaction __user *, 28 struct sigaction __user *,
19 size_t); 29 size_t);
20asmlinkage long xtensa_shmat(int shmid, char __user *shmaddr, int shmflg); 30asmlinkage long xtensa_shmat(int, char __user *, int);
31
32/* Should probably move to linux/syscalls.h */
33struct pollfd;
34asmlinkage long sys_pselect6(int n, fd_set __user *inp, fd_set __user *outp,
35 fd_set __user *exp, struct timespec __user *tsp, void __user *sig);
36asmlinkage long sys_ppoll(struct pollfd __user *ufds, unsigned int nfds,
37 struct timespec __user *tsp, const sigset_t __user *sigmask,
38 size_t sigsetsize);
39
40