diff options
author | Adhemerval Zanella Netto <adhemerval.zanella@linaro.org> | 2022-10-19 19:14:22 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-12-07 14:11:36 -0300 |
commit | 1fed1a5af46fa64d63a7ab7166521b4c1be56007 (patch) | |
tree | 2668e0aa3002f1bf2a120605ac4dcd60c22ed3dc /sysdeps/unix/sysv/linux/socket.c | |
parent | 215bf99347be78f80ea1e9d7d717a4b67616e28d (diff) | |
download | glibc-1fed1a5af46fa64d63a7ab7166521b4c1be56007.tar glibc-1fed1a5af46fa64d63a7ab7166521b4c1be56007.tar.gz glibc-1fed1a5af46fa64d63a7ab7166521b4c1be56007.tar.bz2 glibc-1fed1a5af46fa64d63a7ab7166521b4c1be56007.zip |
Linux: Assume and consolidate socket wire-up syscall
And disable if kernel does not support it.
Checked on x86_64-linux-gnu and i686-linux-gnu.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/socket.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/socket.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sysdeps/unix/sysv/linux/socket.c b/sysdeps/unix/sysv/linux/socket.c index 0fc7a61d06..0258fff872 100644 --- a/sysdeps/unix/sysv/linux/socket.c +++ b/sysdeps/unix/sysv/linux/socket.c @@ -15,19 +15,14 @@ License along with the GNU C Library; if not, see <https://www.gnu.org/licenses/>. */ -#include <errno.h> -#include <signal.h> #include <sys/socket.h> - #include <socketcall.h> -#include <kernel-features.h> -#include <sys/syscall.h> int __socket (int fd, int type, int domain) { #ifdef __ASSUME_SOCKET_SYSCALL - return INLINE_SYSCALL (socket, 3, fd, type, domain); + return INLINE_SYSCALL_CALL (socket, fd, type, domain); #else return SOCKETCALL (socket, fd, type, domain); #endif |