added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / arch / avr32 / include / asm / syscalls.h
blob483d666c27c092bd2289b970a51f2edc6396b182
1 /*
2 * syscalls.h - Linux syscall interfaces (arch-specific)
4 * Copyright (c) 2008 Jaswinder Singh
6 * This file is released under the GPLv2.
7 * See the file COPYING for more details.
8 */
10 #ifndef _ASM_AVR32_SYSCALLS_H
11 #define _ASM_AVR32_SYSCALLS_H
13 #include <linux/compiler.h>
14 #include <linux/linkage.h>
15 #include <linux/types.h>
16 #include <linux/signal.h>
18 /* kernel/process.c */
19 asmlinkage int sys_fork(struct pt_regs *);
20 asmlinkage int sys_clone(unsigned long, unsigned long,
21 unsigned long, unsigned long,
22 struct pt_regs *);
23 asmlinkage int sys_vfork(struct pt_regs *);
24 asmlinkage int sys_execve(char __user *, char __user *__user *,
25 char __user *__user *, struct pt_regs *);
27 /* kernel/signal.c */
28 asmlinkage int sys_sigaltstack(const stack_t __user *, stack_t __user *,
29 struct pt_regs *);
30 asmlinkage int sys_rt_sigreturn(struct pt_regs *);
32 /* kernel/sys_avr32.c */
33 asmlinkage long sys_mmap2(unsigned long, unsigned long, unsigned long,
34 unsigned long, unsigned long, off_t);
36 /* mm/cache.c */
37 asmlinkage int sys_cacheflush(int, void __user *, size_t);
39 #endif /* _ASM_AVR32_SYSCALLS_H */