root/arch/powerpc/include/asm/syscalls.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0 */
   2 #ifndef __ASM_POWERPC_SYSCALLS_H
   3 #define __ASM_POWERPC_SYSCALLS_H
   4 #ifdef __KERNEL__
   5 
   6 #include <linux/compiler.h>
   7 #include <linux/linkage.h>
   8 #include <linux/types.h>
   9 
  10 struct rtas_args;
  11 
  12 asmlinkage long sys_mmap(unsigned long addr, size_t len,
  13                 unsigned long prot, unsigned long flags,
  14                 unsigned long fd, off_t offset);
  15 asmlinkage long sys_mmap2(unsigned long addr, size_t len,
  16                 unsigned long prot, unsigned long flags,
  17                 unsigned long fd, unsigned long pgoff);
  18 asmlinkage long ppc64_personality(unsigned long personality);
  19 asmlinkage long sys_rtas(struct rtas_args __user *uargs);
  20 
  21 #endif /* __KERNEL__ */
  22 #endif /* __ASM_POWERPC_SYSCALLS_H */

/* [<][>][^][v][top][bottom][index][help] */