rss-tools/vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go (view raw)
| 1 | // Copyright 2022 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
| 5 | //go:build openbsd |
| 6 | |
| 7 | package unix |
| 8 | |
| 9 | import _ "unsafe" |
| 10 | |
| 11 | // Implemented in the runtime package (runtime/sys_openbsd3.go) |
| 12 | func syscall_syscall(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) |
| 13 | func syscall_syscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) |
| 14 | func syscall_syscall10(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10 uintptr) (r1, r2 uintptr, err Errno) |
| 15 | func syscall_rawSyscall(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) |
| 16 | func syscall_rawSyscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) |
| 17 | |
| 18 | //go:linkname syscall_syscall syscall.syscall |
| 19 | //go:linkname syscall_syscall6 syscall.syscall6 |
| 20 | //go:linkname syscall_syscall10 syscall.syscall10 |
| 21 | //go:linkname syscall_rawSyscall syscall.rawSyscall |
| 22 | //go:linkname syscall_rawSyscall6 syscall.rawSyscall6 |
| 23 | |
| 24 | func syscall_syscall9(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno) { |
| 25 | return syscall_syscall10(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, 0) |
| 26 | } |