diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-10-23 19:04:37 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-10-23 19:04:37 +0000 |
commit | de27caacfb3da386f499e0f1c65a3246675824bc (patch) | |
tree | 664e8146cf480634282350e5f7f68403941ddfea /libgo/syscalls/syscall_solaris_sparc.go | |
parent | 7b45b87f01235d15b5d9403fa59693a97e49611a (diff) | |
download | gcc-de27caacfb3da386f499e0f1c65a3246675824bc.zip gcc-de27caacfb3da386f499e0f1c65a3246675824bc.tar.gz gcc-de27caacfb3da386f499e0f1c65a3246675824bc.tar.bz2 |
Implement new syscall package.
Calls to library functions now use entersyscall and
exitsyscall as appropriate. This is a first step toward
multiplexing goroutines onto threads.
From-SVN: r180345
Diffstat (limited to 'libgo/syscalls/syscall_solaris_sparc.go')
-rw-r--r-- | libgo/syscalls/syscall_solaris_sparc.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/libgo/syscalls/syscall_solaris_sparc.go b/libgo/syscalls/syscall_solaris_sparc.go deleted file mode 100644 index 0be60b9..0000000 --- a/libgo/syscalls/syscall_solaris_sparc.go +++ /dev/null @@ -1,17 +0,0 @@ -// syscall_solaris_sparc.go -- Solaris/SPARC specific support - -// Copyright 2011 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. - -package syscall - -import "unsafe" - -// FIXME: ptrace(3C) has this, but exec.go expects the next. -//func libc_ptrace(request int, pid Pid_t, addr int, data int) int __asm__ ("ptrace") - -func libc_ptrace(request int, pid Pid_t, addr uintptr, data *byte) int __asm__ ("ptrace") - -var dummy *byte -const sizeofPtr uintptr = uintptr(unsafe.Sizeof(dummy)) |