Merge tag 'mvebu' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[deliverable/linux.git] / arch / powerpc / include / asm / syscalls.h
CommitLineData
a7f31841
AB
1#ifndef __ASM_POWERPC_SYSCALLS_H
2#define __ASM_POWERPC_SYSCALLS_H
3#ifdef __KERNEL__
4
5#include <linux/compiler.h>
6#include <linux/linkage.h>
7#include <linux/types.h>
8#include <asm/signal.h>
9
a7f31841
AB
10struct pt_regs;
11struct rtas_args;
12struct sigaction;
13
14asmlinkage unsigned long sys_mmap(unsigned long addr, size_t len,
15 unsigned long prot, unsigned long flags,
16 unsigned long fd, off_t offset);
17asmlinkage unsigned long sys_mmap2(unsigned long addr, size_t len,
18 unsigned long prot, unsigned long flags,
19 unsigned long fd, unsigned long pgoff);
d35c7b0e 20asmlinkage long sys_pipe(int __user *fildes);
973b7d83 21asmlinkage long sys_pipe2(int __user *fildes, int flags);
a7f31841
AB
22asmlinkage long sys_rt_sigaction(int sig,
23 const struct sigaction __user *act,
24 struct sigaction __user *oact, size_t sigsetsize);
a7f31841
AB
25asmlinkage long ppc64_personality(unsigned long personality);
26asmlinkage int ppc_rtas(struct rtas_args __user *uargs);
27asmlinkage time_t sys64_time(time_t __user * tloc);
a7f31841
AB
28
29asmlinkage long sys_rt_sigsuspend(sigset_t __user *unewset,
30 size_t sigsetsize);
a7f31841
AB
31asmlinkage long sys_sigaltstack(const stack_t __user *uss,
32 stack_t __user *uoss, unsigned long r5, unsigned long r6,
33 unsigned long r7, unsigned long r8, struct pt_regs *regs);
a7f31841
AB
34
35#endif /* __KERNEL__ */
36#endif /* __ASM_POWERPC_SYSCALLS_H */
This page took 0.877168 seconds and 5 git commands to generate.