[klibc] [klibc:master] Remove sys/socketcalls.h

klibc-bot for H. Peter Anvin hpa at linux.intel.com
Tue Jan 5 18:39:03 PST 2016


Commit-ID:  4a7ac3d2d9602d06b301cca62e2382f17fa6d43b
Gitweb:     http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=4a7ac3d2d9602d06b301cca62e2382f17fa6d43b
Author:     H. Peter Anvin <hpa at linux.intel.com>
AuthorDate: Tue, 5 Jan 2016 18:24:18 -0800
Committer:  H. Peter Anvin <hpa at linux.intel.com>
CommitDate: Tue, 5 Jan 2016 18:24:18 -0800

[klibc] Remove sys/socketcalls.h

We no longer generate assembly stubs for socketcalls on any
architecture, so <linux/net.h> is perfectly usable as is.

Signed-off-by: H. Peter Anvin <hpa at linux.intel.com>

---
 usr/include/sys/socketcalls.h        | 28 ----------------------------
 usr/klibc/socketcalls/socketcommon.h |  1 -
 2 files changed, 29 deletions(-)

diff --git a/usr/include/sys/socketcalls.h b/usr/include/sys/socketcalls.h
deleted file mode 100644
index 1c4367d..0000000
--- a/usr/include/sys/socketcalls.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * sys/socketcalls.h
- */
-
-#ifndef _SYS_SOCKETCALLS_H
-#define _SYS_SOCKETCALLS_H
-
-/* socketcalls by number, since <linux/net.h> isn't usable for assembly */
-
-#define SYS_SOCKET      1	/* sys_socket(2)                */
-#define SYS_BIND        2	/* sys_bind(2)                  */
-#define SYS_CONNECT     3	/* sys_connect(2)               */
-#define SYS_LISTEN      4	/* sys_listen(2)                */
-#define SYS_ACCEPT      5	/* sys_accept(2)                */
-#define SYS_GETSOCKNAME 6	/* sys_getsockname(2)           */
-#define SYS_GETPEERNAME 7	/* sys_getpeername(2)           */
-#define SYS_SOCKETPAIR  8	/* sys_socketpair(2)            */
-#define SYS_SEND        9	/* sys_send(2)                  */
-#define SYS_RECV        10	/* sys_recv(2)                  */
-#define SYS_SENDTO      11	/* sys_sendto(2)                */
-#define SYS_RECVFROM    12	/* sys_recvfrom(2)              */
-#define SYS_SHUTDOWN    13	/* sys_shutdown(2)              */
-#define SYS_SETSOCKOPT  14	/* sys_setsockopt(2)            */
-#define SYS_GETSOCKOPT  15	/* sys_getsockopt(2)            */
-#define SYS_SENDMSG     16	/* sys_sendmsg(2)               */
-#define SYS_RECVMSG     17	/* sys_recvmsg(2)               */
-
-#endif				/* _SYS_SOCKETCALLS_H */
diff --git a/usr/klibc/socketcalls/socketcommon.h b/usr/klibc/socketcalls/socketcommon.h
index 9c4b11f..7fdd547 100644
--- a/usr/klibc/socketcalls/socketcommon.h
+++ b/usr/klibc/socketcalls/socketcommon.h
@@ -13,4 +13,3 @@
 #include <sys/time.h>
 #include <sys/socket.h>
 #include <linux/net.h>
-#include <sys/socketcalls.h>


More information about the klibc mailing list