diff options
Diffstat (limited to 'libgo/syscalls/syscall_irix.go')
-rw-r--r-- | libgo/syscalls/syscall_irix.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/libgo/syscalls/syscall_irix.go b/libgo/syscalls/syscall_irix.go deleted file mode 100644 index e66cef045db..00000000000 --- a/libgo/syscalls/syscall_irix.go +++ /dev/null @@ -1,17 +0,0 @@ -// syscall_irix.go -- IRIX 6 specific syscall interface. - -// 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)) |