2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2008-08-02 09:55:55 +00:00
|
|
|
* arch/arm/include/asm/unistd.h
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2001-2005 Russell King
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Please forward _all_ changes to this file to rmk@arm.linux.org.uk,
|
|
|
|
* no matter what the change is. Thanks!
|
|
|
|
*/
|
|
|
|
#ifndef __ASM_ARM_UNISTD_H
|
|
|
|
#define __ASM_ARM_UNISTD_H
|
|
|
|
|
2012-10-12 12:05:52 +00:00
|
|
|
#include <uapi/asm/unistd.h>
|
2006-01-14 16:31:29 +00:00
|
|
|
|
2012-09-07 17:18:25 +00:00
|
|
|
#define __NR_syscalls (380)
|
2009-11-09 23:53:29 +00:00
|
|
|
#define __ARM_NR_cmpxchg (__ARM_NR_BASE+0x00fff0)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#define __ARCH_WANT_STAT64
|
|
|
|
#define __ARCH_WANT_SYS_GETHOSTNAME
|
|
|
|
#define __ARCH_WANT_SYS_PAUSE
|
|
|
|
#define __ARCH_WANT_SYS_GETPGRP
|
|
|
|
#define __ARCH_WANT_SYS_LLSEEK
|
|
|
|
#define __ARCH_WANT_SYS_NICE
|
|
|
|
#define __ARCH_WANT_SYS_SIGPENDING
|
|
|
|
#define __ARCH_WANT_SYS_SIGPROCMASK
|
2010-03-10 23:21:15 +00:00
|
|
|
#define __ARCH_WANT_SYS_OLD_MMAP
|
2010-03-10 23:21:13 +00:00
|
|
|
#define __ARCH_WANT_SYS_OLD_SELECT
|
2006-01-14 16:36:12 +00:00
|
|
|
|
|
|
|
#if !defined(CONFIG_AEABI) || defined(CONFIG_OABI_COMPAT)
|
|
|
|
#define __ARCH_WANT_SYS_TIME
|
2010-03-10 23:21:18 +00:00
|
|
|
#define __ARCH_WANT_SYS_IPC
|
2006-01-14 16:36:12 +00:00
|
|
|
#define __ARCH_WANT_SYS_OLDUMOUNT
|
|
|
|
#define __ARCH_WANT_SYS_ALARM
|
|
|
|
#define __ARCH_WANT_SYS_UTIME
|
|
|
|
#define __ARCH_WANT_SYS_OLD_GETRLIMIT
|
|
|
|
#define __ARCH_WANT_OLD_READDIR
|
|
|
|
#define __ARCH_WANT_SYS_SOCKETCALL
|
|
|
|
#endif
|
2012-10-21 19:54:27 +00:00
|
|
|
#define __ARCH_WANT_SYS_FORK
|
|
|
|
#define __ARCH_WANT_SYS_VFORK
|
|
|
|
#define __ARCH_WANT_SYS_CLONE
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-05-16 11:41:15 +00:00
|
|
|
/*
|
|
|
|
* Unimplemented (or alternatively implemented) syscalls
|
|
|
|
*/
|
2011-09-17 11:50:27 +00:00
|
|
|
#define __IGNORE_fadvise64_64
|
|
|
|
#define __IGNORE_migrate_pages
|
2012-09-21 16:55:20 +00:00
|
|
|
#define __IGNORE_kcmp
|
2007-05-16 11:41:15 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* __ASM_ARM_UNISTD_H */
|