aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/debug/proc/proc_darwin.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/debug/proc/proc_darwin.go')
-rw-r--r--libgo/go/debug/proc/proc_darwin.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/libgo/go/debug/proc/proc_darwin.go b/libgo/go/debug/proc/proc_darwin.go
deleted file mode 100644
index 49f0a53..0000000
--- a/libgo/go/debug/proc/proc_darwin.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2009 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 proc
-
-import "os"
-
-// Process tracing is not supported on OS X yet.
-
-func Attach(pid int) (Process, os.Error) {
- return nil, os.NewError("debug/proc not implemented on OS X")
-}
-
-func StartProcess(argv0 string, argv []string, attr *os.ProcAttr) (Process, os.Error) {
- return Attach(0)
-}