summaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/sys/unix/gccgo_c.c
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/gccgo_c.c
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/gccgo_c.c')
-rw-r--r--vendor/golang.org/x/sys/unix/gccgo_c.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/vendor/golang.org/x/sys/unix/gccgo_c.c b/vendor/golang.org/x/sys/unix/gccgo_c.c
index 07f6be039..46523ced6 100644
--- a/vendor/golang.org/x/sys/unix/gccgo_c.c
+++ b/vendor/golang.org/x/sys/unix/gccgo_c.c
@@ -1,4 +1,4 @@
-// Copyright 2015 The Go Authors. All rights reserved.
+// Copyright 2015 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.
@@ -31,11 +31,8 @@ gccgoRealSyscall(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintp
return r;
}
-// Define the use function in C so that it is not inlined.
-
-extern void use(void *) __asm__ (GOSYM_PREFIX GOPKGPATH ".use") __attribute__((noinline));
-
-void
-use(void *p __attribute__ ((unused)))
+uintptr_t
+gccgoRealSyscallNoError(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7, uintptr_t a8, uintptr_t a9)
{
+ return syscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9);
}