summaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-06-28 13:52:12 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-06-28 20:28:38 +0000
commit67f68626e6e5116ec088f511a0f8a17158b303db (patch)
treef95284f8e3ea61421309f2b363a0b3bca6764075 /vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go
parent45c745e0b0d0fe648283e954b8e1b37a46887458 (diff)
downloadpodman-67f68626e6e5116ec088f511a0f8a17158b303db.tar.gz
podman-67f68626e6e5116ec088f511a0f8a17158b303db.tar.bz2
podman-67f68626e6e5116ec088f511a0f8a17158b303db.zip
vendor in latest golang/x/sys
Signed-off-by: baude <bbaude@redhat.com> Closes: #1022 Approved by: baude
Diffstat (limited to 'vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go')
-rw-r--r--vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go b/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go
new file mode 100644
index 000000000..070bd3899
--- /dev/null
+++ b/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go
@@ -0,0 +1,16 @@
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build linux,!gccgo,386
+
+package unix
+
+import "syscall"
+
+// Underlying system call writes to newoffset via pointer.
+// Implemented in assembly to avoid allocation.
+func seek(fd int, offset int64, whence int) (newoffset int64, err syscall.Errno)
+
+func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err syscall.Errno)
+func rawsocketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err syscall.Errno)