summaryrefslogtreecommitdiff
path: root/src/pkg/debug/proc/proc_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/debug/proc/proc_windows.go')
-rw-r--r--src/pkg/debug/proc/proc_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/debug/proc/proc_windows.go b/src/pkg/debug/proc/proc_windows.go
index dc22faef8..661474b67 100644
--- a/src/pkg/debug/proc/proc_windows.go
+++ b/src/pkg/debug/proc/proc_windows.go
@@ -12,6 +12,6 @@ func Attach(pid int) (Process, os.Error) {
return nil, os.NewError("debug/proc not implemented on windows")
}
-func ForkExec(argv0 string, argv []string, envv []string, dir string, fd []*os.File) (Process, os.Error) {
+func StartProcess(argv0 string, argv []string, attr *os.ProcAttr) (Process, os.Error) {
return Attach(0)
}