diff options
Diffstat (limited to 'vendor/golang.org/x/sys/unix/mkerrors.sh')
-rw-r--r-- | vendor/golang.org/x/sys/unix/mkerrors.sh | 48 |
1 files changed, 31 insertions, 17 deletions
diff --git a/vendor/golang.org/x/sys/unix/mkerrors.sh b/vendor/golang.org/x/sys/unix/mkerrors.sh index e096161a52..67b84828ac 100644 --- a/vendor/golang.org/x/sys/unix/mkerrors.sh +++ b/vendor/golang.org/x/sys/unix/mkerrors.sh @@ -60,6 +60,7 @@ includes_Darwin=' #include <sys/types.h> #include <sys/event.h> #include <sys/ptrace.h> +#include <sys/select.h> #include <sys/socket.h> #include <sys/sockio.h> #include <sys/sysctl.h> @@ -80,6 +81,7 @@ includes_Darwin=' includes_DragonFly=' #include <sys/types.h> #include <sys/event.h> +#include <sys/select.h> #include <sys/socket.h> #include <sys/sockio.h> #include <sys/stat.h> @@ -103,6 +105,7 @@ includes_FreeBSD=' #include <sys/param.h> #include <sys/types.h> #include <sys/event.h> +#include <sys/select.h> #include <sys/socket.h> #include <sys/sockio.h> #include <sys/stat.h> @@ -179,24 +182,31 @@ struct ltchars { #include <sys/stat.h> #include <sys/types.h> #include <sys/time.h> +#include <sys/select.h> #include <sys/signalfd.h> #include <sys/socket.h> #include <sys/xattr.h> #include <linux/bpf.h> +#include <linux/can.h> #include <linux/capability.h> +#include <linux/cryptouser.h> #include <linux/errqueue.h> +#include <linux/falloc.h> +#include <linux/fanotify.h> +#include <linux/filter.h> +#include <linux/fs.h> +#include <linux/genetlink.h> +#include <linux/hdreg.h> +#include <linux/icmpv6.h> #include <linux/if.h> +#include <linux/if_addr.h> #include <linux/if_alg.h> #include <linux/if_arp.h> #include <linux/if_ether.h> #include <linux/if_ppp.h> #include <linux/if_tun.h> #include <linux/if_packet.h> -#include <linux/if_addr.h> -#include <linux/falloc.h> -#include <linux/fanotify.h> -#include <linux/filter.h> -#include <linux/fs.h> +#include <linux/if_xdp.h> #include <linux/kexec.h> #include <linux/keyctl.h> #include <linux/loop.h> @@ -208,26 +218,21 @@ struct ltchars { #include <linux/net_namespace.h> #include <linux/nsfs.h> #include <linux/perf_event.h> +#include <linux/ptrace.h> #include <linux/random.h> #include <linux/reboot.h> +#include <linux/rtc.h> #include <linux/rtnetlink.h> -#include <linux/ptrace.h> #include <linux/sched.h> #include <linux/seccomp.h> -#include <linux/sockios.h> -#include <linux/wait.h> -#include <linux/icmpv6.h> #include <linux/serial.h> -#include <linux/can.h> -#include <linux/vm_sockets.h> +#include <linux/sockios.h> #include <linux/taskstats.h> -#include <linux/genetlink.h> -#include <linux/watchdog.h> -#include <linux/hdreg.h> -#include <linux/rtc.h> -#include <linux/if_xdp.h> -#include <linux/cryptouser.h> #include <linux/tipc.h> +#include <linux/vm_sockets.h> +#include <linux/wait.h> +#include <linux/watchdog.h> + #include <mtd/ubi-user.h> #include <net/route.h> @@ -266,6 +271,11 @@ struct ltchars { #define FS_KEY_DESC_PREFIX "fscrypt:" #define FS_KEY_DESC_PREFIX_SIZE 8 #define FS_MAX_KEY_SIZE 64 + +// The code generator produces -0x1 for (~0), but an unsigned value is necessary +// for the tipc_subscr timeout __u32 field. +#undef TIPC_WAIT_FOREVER +#define TIPC_WAIT_FOREVER 0xffffffff ' includes_NetBSD=' @@ -275,6 +285,7 @@ includes_NetBSD=' #include <sys/extattr.h> #include <sys/mman.h> #include <sys/mount.h> +#include <sys/select.h> #include <sys/socket.h> #include <sys/sockio.h> #include <sys/sysctl.h> @@ -301,6 +312,7 @@ includes_OpenBSD=' #include <sys/event.h> #include <sys/mman.h> #include <sys/mount.h> +#include <sys/select.h> #include <sys/socket.h> #include <sys/sockio.h> #include <sys/stat.h> @@ -337,6 +349,7 @@ includes_OpenBSD=' includes_SunOS=' #include <limits.h> #include <sys/types.h> +#include <sys/select.h> #include <sys/socket.h> #include <sys/sockio.h> #include <sys/stat.h> @@ -429,6 +442,7 @@ ccflags="$@" $2 == "XCASE" || $2 == "ALTWERASE" || $2 == "NOKERNINFO" || + $2 == "NFDBITS" || $2 ~ /^PAR/ || $2 ~ /^SIG[^_]/ || $2 ~ /^O[CNPFPL][A-Z]+[^_][A-Z]+$/ || |