aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/syscall/exec_stubs.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/syscall/exec_stubs.go')
-rw-r--r--libgo/go/syscall/exec_stubs.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/libgo/go/syscall/exec_stubs.go b/libgo/go/syscall/exec_stubs.go
index ce5dabe..02b9ec3 100644
--- a/libgo/go/syscall/exec_stubs.go
+++ b/libgo/go/syscall/exec_stubs.go
@@ -17,3 +17,7 @@ func Exec(argv0 string, argv []string, envv []string) (err int) {
func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, errno int) {
return -1, ENOSYS;
}
+
+func raw_ptrace(request int, pid int, addr *byte, data *byte) int {
+ return ENOSYS
+}