]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/s390/kernel-features.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / s390 / kernel-features.h
CommitLineData
b21c2d50
JM
1/* Set flags signalling availability of kernel features based on given
2 kernel version number. S/390 version.
688903eb 3 Copyright (C) 1999-2018 Free Software Foundation, Inc.
b21c2d50
JM
4 This file is part of the GNU C Library.
5
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
19
20/* S/390 uses socketcall. */
21#define __ASSUME_SOCKETCALL 1
22
016495b8
SL
23/* Direct socketcalls available with kernel 4.3. */
24#if __LINUX_KERNEL_VERSION >= 0x040300
016495b8
SL
25# define __ASSUME_SOCKET_SYSCALL 1
26# define __ASSUME_SOCKETPAIR_SYSCALL 1
27# define __ASSUME_BIND_SYSCALL 1
016495b8 28# define __ASSUME_LISTEN_SYSCALL 1
016495b8
SL
29# define __ASSUME_GETSOCKOPT_SYSCALL 1
30# define __ASSUME_SETSOCKOPT_SYSCALL 1
31# define __ASSUME_GETSOCKNAME_SYSCALL 1
32# define __ASSUME_GETPEERNAME_SYSCALL 1
016495b8
SL
33# define __ASSUME_SHUTDOWN_SYSCALL 1
34#endif
35
b21c2d50 36#include_next <kernel-features.h>
35ade9f1 37
01061a7c
AZ
38#undef __ASSUME_ACCEPT_SYSCALL
39
35ade9f1
JM
40#if __LINUX_KERNEL_VERSION < 0x040300
41# undef __ASSUME_ACCEPT4_SYSCALL
42# undef __ASSUME_RECVMMSG_SYSCALL
43# undef __ASSUME_SENDMMSG_SYSCALL
abf29edd
AZ
44# undef __ASSUME_SENDMSG_SYSCALL
45# undef __ASSUME_RECVMSG_SYSCALL
3e9ff426 46# undef __ASSUME_CONNECT_SYSCALL
1f8161a8 47# undef __ASSUME_RECVFROM_SYSCALL
06cf371e 48# undef __ASSUME_SENDTO_SYSCALL
35ade9f1 49#endif
63719cf1
AZ
50
51/* s390 only supports ipc syscall. */
52#undef __ASSUME_DIRECT_SYSVIPC_SYSCALLS