add back x32 bits/socket.h defining time-related socket options
authorRich Felker <dalias@aerifal.cx>
Fri, 1 Nov 2019 03:21:35 +0000 (23:21 -0400)
committerRich Felker <dalias@aerifal.cx>
Sat, 2 Nov 2019 22:30:56 +0000 (18:30 -0400)
these definitions are merely copied from the top-level sys/socket.h,
so there is no functional change at this time. however, the top-level
definitions will change to use the time64 "_NEW" versions on 32-bit
archs when time_t is switched over to 64-bit. this commit ensures that
change will be suppressed on x32.

arch/x32/bits/socket.h [new file with mode: 0644]

diff --git a/arch/x32/bits/socket.h b/arch/x32/bits/socket.h
new file mode 100644 (file)
index 0000000..8d83001
--- /dev/null
@@ -0,0 +1,5 @@
+#define SO_RCVTIMEO     20
+#define SO_SNDTIMEO     21
+#define SO_TIMESTAMP    29
+#define SO_TIMESTAMPNS  35
+#define SO_TIMESTAMPING 37