From 0ec1144963cffce720dc873b6311730267969fd7 Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Thu, 9 Feb 2017 14:28:02 +0100 Subject: sys: split socket.txt into multiple files based on socket type This just moves syscall descriptions and fixes up includes without any semantic changes. --- sys/socket_unix_amd64.const | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 sys/socket_unix_amd64.const (limited to 'sys/socket_unix_amd64.const') diff --git a/sys/socket_unix_amd64.const b/sys/socket_unix_amd64.const new file mode 100644 index 000000000..d629748ca --- /dev/null +++ b/sys/socket_unix_amd64.const @@ -0,0 +1,21 @@ +# AUTOGENERATED FILE +AF_UNIX = 1 +AF_UNSPEC = 0 +SCM_CREDENTIALS = 2 +SCM_RIGHTS = 1 +SOCK_DGRAM = 2 +SOCK_SEQPACKET = 5 +SOCK_STREAM = 1 +SOL_SOCKET = 1 +__NR_accept = 43 +__NR_accept4 = 288 +__NR_bind = 49 +__NR_connect = 42 +__NR_getpeername = 52 +__NR_getsockname = 51 +__NR_recvfrom = 45 +__NR_sendmmsg = 307 +__NR_sendmsg = 46 +__NR_sendto = 44 +__NR_socket = 41 +__NR_socketpair = 53 -- cgit mrf-deployment