| .. | .. |
|---|
| 10 | 10 | |
|---|
| 11 | 11 | #include <uapi/asm/unistd.h> |
|---|
| 12 | 12 | |
|---|
| 13 | +#define NR_syscalls __NR_syscalls /* length of syscall table */ |
|---|
| 13 | 14 | |
|---|
| 14 | | - |
|---|
| 15 | | -#define NR_syscalls 326 /* length of syscall table */ |
|---|
| 16 | | - |
|---|
| 17 | | -/* |
|---|
| 18 | | - * The following defines stop scripts/checksyscalls.sh from complaining about |
|---|
| 19 | | - * unimplemented system calls. Glibc provides for each of these by using |
|---|
| 20 | | - * more modern equivalent system calls. |
|---|
| 21 | | - */ |
|---|
| 22 | | -#define __IGNORE_fork /* clone() */ |
|---|
| 23 | | -#define __IGNORE_time /* gettimeofday() */ |
|---|
| 24 | | -#define __IGNORE_alarm /* setitimer(ITIMER_REAL, ... */ |
|---|
| 25 | | -#define __IGNORE_pause /* rt_sigprocmask(), rt_sigsuspend() */ |
|---|
| 26 | | -#define __IGNORE_utime /* utimes() */ |
|---|
| 27 | | -#define __IGNORE_getpgrp /* getpgid() */ |
|---|
| 28 | | -#define __IGNORE_vfork /* clone() */ |
|---|
| 29 | | -#define __IGNORE_umount2 /* umount() */ |
|---|
| 15 | +#define __ARCH_WANT_NEW_STAT |
|---|
| 16 | +#define __ARCH_WANT_SYS_UTIME |
|---|
| 30 | 17 | |
|---|
| 31 | 18 | #if !defined(__ASSEMBLY__) && !defined(ASSEMBLER) |
|---|
| 32 | 19 | |
|---|