2006-03-21 21:00:16 +00:00
|
|
|
/* Set flags signalling availability of kernel features based on given
|
|
|
|
kernel version number.
|
2013-01-02 19:01:50 +00:00
|
|
|
Copyright (C) 2006-2013 Free Software Foundation, Inc.
|
2006-03-21 21:00:16 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2006-03-21 21:00:16 +00:00
|
|
|
|
|
|
|
/* The utimes syscall was added before 2.6.1. */
|
2012-08-07 16:40:32 +00:00
|
|
|
#define __ASSUME_UTIMES 1
|
2006-03-21 21:00:16 +00:00
|
|
|
|
2007-05-23 17:33:17 +00:00
|
|
|
/* The signal frame layout changed in 2.6.18. */
|
|
|
|
#if __LINUX_KERNEL_VERSION >= 132626
|
|
|
|
# define __ASSUME_SIGFRAME_V2 1
|
|
|
|
#endif
|
|
|
|
|
2009-07-29 15:26:39 +00:00
|
|
|
/* Support for the eventfd2 and signalfd4 syscalls was added in 2.6.27. */
|
|
|
|
#if __LINUX_KERNEL_VERSION >= 0x02061b
|
|
|
|
# define __ASSUME_EVENTFD2 1
|
|
|
|
# define __ASSUME_SIGNALFD4 1
|
|
|
|
#endif
|
|
|
|
|
2012-05-16 10:38:40 +00:00
|
|
|
/* Support for the accept4 syscall was added in 2.6.36. */
|
|
|
|
#if __LINUX_KERNEL_VERSION >= 0x020624
|
|
|
|
# define __ASSUME_ACCEPT4 1
|
|
|
|
#endif
|
|
|
|
|
2006-03-21 21:00:16 +00:00
|
|
|
#include_next <kernel-features.h>
|
2007-09-17 16:31:32 +00:00
|
|
|
|
2009-11-19 16:36:58 +00:00
|
|
|
/* Support for pselect6, ppoll and epoll_pwait was added in 2.6.32. */
|
|
|
|
#if __LINUX_KERNEL_VERSION < 0x020620
|
|
|
|
# undef __ASSUME_PSELECT
|
|
|
|
# undef __ASSUME_PPOLL
|
|
|
|
#endif
|