Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.8 70 lines 1.9 kB view raw
1/* 2 * This file contains the system call numbers. 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * as published by the Free Software Foundation; either version 7 * 2 of the License, or (at your option) any later version. 8 */ 9#ifndef _ASM_POWERPC_UNISTD_H_ 10#define _ASM_POWERPC_UNISTD_H_ 11 12#include <uapi/asm/unistd.h> 13 14 15#define __NR_syscalls 354 16 17#define __NR__exit __NR_exit 18#define NR_syscalls __NR_syscalls 19 20#ifndef __ASSEMBLY__ 21 22#include <linux/types.h> 23#include <linux/compiler.h> 24#include <linux/linkage.h> 25 26#define __ARCH_WANT_OLD_READDIR 27#define __ARCH_WANT_STAT64 28#define __ARCH_WANT_SYS_ALARM 29#define __ARCH_WANT_SYS_GETHOSTNAME 30#define __ARCH_WANT_SYS_IPC 31#define __ARCH_WANT_SYS_PAUSE 32#define __ARCH_WANT_SYS_SGETMASK 33#define __ARCH_WANT_SYS_SIGNAL 34#define __ARCH_WANT_SYS_TIME 35#define __ARCH_WANT_SYS_UTIME 36#define __ARCH_WANT_SYS_WAITPID 37#define __ARCH_WANT_SYS_SOCKETCALL 38#define __ARCH_WANT_SYS_FADVISE64 39#define __ARCH_WANT_SYS_GETPGRP 40#define __ARCH_WANT_SYS_LLSEEK 41#define __ARCH_WANT_SYS_NICE 42#define __ARCH_WANT_SYS_OLD_GETRLIMIT 43#define __ARCH_WANT_SYS_OLD_UNAME 44#define __ARCH_WANT_SYS_OLDUMOUNT 45#define __ARCH_WANT_SYS_SIGPENDING 46#define __ARCH_WANT_SYS_SIGPROCMASK 47#define __ARCH_WANT_SYS_RT_SIGACTION 48#define __ARCH_WANT_SYS_RT_SIGSUSPEND 49#ifdef CONFIG_PPC32 50#define __ARCH_WANT_OLD_STAT 51#endif 52#ifdef CONFIG_PPC64 53#define __ARCH_WANT_COMPAT_SYS_TIME 54#define __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND 55#define __ARCH_WANT_SYS_NEWFSTATAT 56#define __ARCH_WANT_COMPAT_SYS_SENDFILE 57#define __ARCH_WANT_COMPAT_SYS_SCHED_RR_GET_INTERVAL 58#endif 59#define __ARCH_WANT_SYS_FORK 60#define __ARCH_WANT_SYS_VFORK 61#define __ARCH_WANT_SYS_CLONE 62 63/* 64 * "Conditional" syscalls 65 */ 66#define cond_syscall(x) \ 67 asmlinkage long x (void) __attribute__((weak,alias("sys_ni_syscall"))) 68 69#endif /* __ASSEMBLY__ */ 70#endif /* _ASM_POWERPC_UNISTD_H_ */