2012-10-24 11:17:05 +08:00
|
|
|
#ifndef _XTENSA_UNISTD_H
|
|
|
|
#define _XTENSA_UNISTD_H
|
2005-06-24 13:01:26 +08:00
|
|
|
|
2012-10-27 11:41:40 +08:00
|
|
|
#define __ARCH_WANT_SYS_CLONE
|
2012-10-15 07:55:40 +08:00
|
|
|
#include <uapi/asm/unistd.h>
|
2005-06-24 13:01:26 +08:00
|
|
|
|
|
|
|
#define __ARCH_WANT_STAT64
|
|
|
|
#define __ARCH_WANT_SYS_UTIME
|
|
|
|
#define __ARCH_WANT_SYS_LLSEEK
|
2007-08-04 06:55:07 +08:00
|
|
|
#define __ARCH_WANT_SYS_GETPGRP
|
2006-12-10 18:18:47 +08:00
|
|
|
|
2007-08-04 06:55:07 +08:00
|
|
|
/*
|
|
|
|
* Ignore legacy system calls in the checksyscalls.sh script
|
|
|
|
*/
|
2005-06-24 13:01:26 +08:00
|
|
|
|
2007-08-04 06:55:07 +08:00
|
|
|
#define __IGNORE_fork /* use clone */
|
|
|
|
#define __IGNORE_time
|
|
|
|
#define __IGNORE_alarm /* use setitimer */
|
|
|
|
#define __IGNORE_pause
|
|
|
|
#define __IGNORE_mmap /* use mmap2 */
|
|
|
|
#define __IGNORE_vfork /* use clone */
|
|
|
|
#define __IGNORE_fadvise64 /* use fadvise64_64 */
|
2012-10-24 11:17:05 +08:00
|
|
|
|
|
|
|
#endif /* _XTENSA_UNISTD_H */
|