2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* This file contains the system call numbers.
|
2005-10-10 20:56:11 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2012-10-09 16:47:26 +08:00
|
|
|
#ifndef _ASM_POWERPC_UNISTD_H_
|
|
|
|
#define _ASM_POWERPC_UNISTD_H_
|
2005-10-10 20:56:11 +08:00
|
|
|
|
2012-10-09 16:47:26 +08:00
|
|
|
#include <uapi/asm/unistd.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-04-29 08:51:47 +08:00
|
|
|
|
2016-01-14 00:50:22 +08:00
|
|
|
#define NR_syscalls 380
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-10 20:56:11 +08:00
|
|
|
#define __NR__exit __NR_exit
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-10 20:56:11 +08:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <linux/linkage.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define __ARCH_WANT_OLD_READDIR
|
|
|
|
#define __ARCH_WANT_STAT64
|
|
|
|
#define __ARCH_WANT_SYS_ALARM
|
|
|
|
#define __ARCH_WANT_SYS_GETHOSTNAME
|
2010-03-11 07:21:18 +08:00
|
|
|
#define __ARCH_WANT_SYS_IPC
|
2005-04-17 06:20:36 +08:00
|
|
|
#define __ARCH_WANT_SYS_PAUSE
|
|
|
|
#define __ARCH_WANT_SYS_SIGNAL
|
|
|
|
#define __ARCH_WANT_SYS_TIME
|
|
|
|
#define __ARCH_WANT_SYS_UTIME
|
|
|
|
#define __ARCH_WANT_SYS_WAITPID
|
|
|
|
#define __ARCH_WANT_SYS_SOCKETCALL
|
|
|
|
#define __ARCH_WANT_SYS_FADVISE64
|
|
|
|
#define __ARCH_WANT_SYS_GETPGRP
|
|
|
|
#define __ARCH_WANT_SYS_LLSEEK
|
|
|
|
#define __ARCH_WANT_SYS_NICE
|
|
|
|
#define __ARCH_WANT_SYS_OLD_GETRLIMIT
|
2010-03-11 07:21:21 +08:00
|
|
|
#define __ARCH_WANT_SYS_OLD_UNAME
|
2005-04-17 06:20:36 +08:00
|
|
|
#define __ARCH_WANT_SYS_OLDUMOUNT
|
|
|
|
#define __ARCH_WANT_SYS_SIGPENDING
|
|
|
|
#define __ARCH_WANT_SYS_SIGPROCMASK
|
2005-10-10 20:56:11 +08:00
|
|
|
#ifdef CONFIG_PPC32
|
|
|
|
#define __ARCH_WANT_OLD_STAT
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_PPC64
|
|
|
|
#define __ARCH_WANT_COMPAT_SYS_TIME
|
2006-04-27 21:46:42 +08:00
|
|
|
#define __ARCH_WANT_SYS_NEWFSTATAT
|
2012-09-19 19:01:52 +08:00
|
|
|
#define __ARCH_WANT_COMPAT_SYS_SENDFILE
|
2005-10-10 20:56:11 +08:00
|
|
|
#endif
|
2012-10-27 11:08:25 +08:00
|
|
|
#define __ARCH_WANT_SYS_FORK
|
|
|
|
#define __ARCH_WANT_SYS_VFORK
|
|
|
|
#define __ARCH_WANT_SYS_CLONE
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-10 20:56:11 +08:00
|
|
|
#endif /* __ASSEMBLY__ */
|
2007-05-10 23:13:04 +08:00
|
|
|
#endif /* _ASM_POWERPC_UNISTD_H_ */
|