m68k: update kernel-features.h

This commit is contained in:
Andreas Schwab 2013-02-08 23:18:53 +01:00
parent a2da1673fe
commit 3392138235
2 changed files with 29 additions and 0 deletions

View File

@ -1,3 +1,12 @@
2013-02-08 Andreas Schwab <schwab@linux-m68k.org>
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_O_CLOEXEC): Define for 2.6.23 or later.
(__ASSUME_SOCK_CLOEXEC, __ASSUME_IN_NONBLOCK, __ASSUME_PIPE2)
(__ASSUME_EVENTFD2, __ASSUME_SIGNALFD4, __ASSUME_DUP3): Define for
2.6.27 or later.
(__ASSUME_ACCEPT4): Define for 2.6.28 or later.
2013-02-04 Joseph Myers <joseph@codesourcery.com>
[BZ #13550]

View File

@ -20,6 +20,26 @@
/* Many syscalls were added in 2.6.10 for m68k. */
#define __ASSUME_UTIMES 1
/* Support for various CLOEXEC and NONBLOCK flags was added 2.6.23. */
#if __LINUX_KERNEL_VERSION >= 0x020617
# define __ASSUME_O_CLOEXEC 1
#endif
/* Support for various CLOEXEC and NONBLOCK flags was added in 2.6.27. */
#if __LINUX_KERNEL_VERSION >= 0x02061b
# define __ASSUME_SOCK_CLOEXEC 1
# define __ASSUME_IN_NONBLOCK 1
# define __ASSUME_PIPE2 1
# define __ASSUME_EVENTFD2 1
# define __ASSUME_SIGNALFD4 1
# define __ASSUME_DUP3 1
#endif
/* Support for the accept4 syscall was added in 2.6.28. */
#if __LINUX_KERNEL_VERSION >= 0x02061c
# define __ASSUME_ACCEPT4 1
#endif
#include_next <kernel-features.h>
/* These syscalls were added only in 3.0 for m68k. */