diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-22 19:46:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-22 19:46:29 -0400 |
commit | 5fd52203e1856ad925b1a6adae9a22e533da94e2 (patch) | |
tree | 9c1943df7bb47a5170a855a301beb69c6ebd6db3 /include | |
parent | 5453e7723b95958f4591b2e0063573d8d53e7699 (diff) | |
parent | a66aa704d6f332b001dfb0e787c92b2c61c75081 (diff) |
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6
* 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6:
[IA64] fix kmalloc(0) in arch/ia64/pci/pci.c
[IA64] Only unwind non-running tasks.
[IA64] Improve unwind checking.
[IA64] Yet another section mismatch warning
[IA64] Fix bogus messages about system calls not implemented.
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-ia64/unistd.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-ia64/unistd.h b/include/asm-ia64/unistd.h index d7781a2ddefe..441c9e001776 100644 --- a/include/asm-ia64/unistd.h +++ b/include/asm-ia64/unistd.h | |||
@@ -305,6 +305,19 @@ | |||
305 | 305 | ||
306 | #define NR_syscalls 286 /* length of syscall table */ | 306 | #define NR_syscalls 286 /* length of syscall table */ |
307 | 307 | ||
308 | /* | ||
309 | * The following defines stop scripts/checksyscalls.sh from complaining about | ||
310 | * unimplemented system calls. Glibc provides for each of these by using | ||
311 | * more modern equivalent system calls. | ||
312 | */ | ||
313 | #define __IGNORE_fork /* clone() */ | ||
314 | #define __IGNORE_time /* gettimeofday() */ | ||
315 | #define __IGNORE_alarm /* setitimer(ITIMER_REAL, ... */ | ||
316 | #define __IGNORE_pause /* rt_sigprocmask(), rt_sigsuspend() */ | ||
317 | #define __IGNORE_utime /* utimes() */ | ||
318 | #define __IGNORE_getpgrp /* getpgid() */ | ||
319 | #define __IGNORE_vfork /* clone() */ | ||
320 | |||
308 | #define __ARCH_WANT_SYS_RT_SIGACTION | 321 | #define __ARCH_WANT_SYS_RT_SIGACTION |
309 | #define __ARCH_WANT_SYS_RT_SIGSUSPEND | 322 | #define __ARCH_WANT_SYS_RT_SIGSUSPEND |
310 | 323 | ||