github.com/llvm-mirror/llgo@v0.0.0-20190322182713-bf6f0a60fce1/third_party/gofrontend/libgo/go/syscall/syscall_stubs.go (about) 1 // Copyright 2010 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 // These are stubs. 6 7 package syscall 8 9 func Syscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr) { 10 z := -1 11 return uintptr(z), 0, uintptr(ENOSYS) 12 } 13 14 func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr) { 15 z := -1 16 return uintptr(z), 0, uintptr(ENOSYS) 17 } 18 19 func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr) { 20 z := -1 21 return uintptr(z), 0, uintptr(ENOSYS) 22 } 23 24 func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr) { 25 z := -1 26 return uintptr(z), 0, uintptr(ENOSYS) 27 }