OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgo/] [go/] [syscall/] [syscall_stubs.go] - Blame information for rev 833

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 747 jeremybenn
// 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
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.