OSDN Git Service

PR lto/50430
[pf3gnuchains/gcc-fork.git] / libgo / go / debug / proc / proc_windows.go
1 // Copyright 2009 The Go Authors.  All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package proc
6
7 import "os"
8
9 // Process tracing is not supported on windows yet.
10
11 func Attach(pid int) (Process, os.Error) {
12         return nil, os.NewError("debug/proc not implemented on windows")
13 }
14
15 func StartProcess(argv0 string, argv []string, attr *os.ProcAttr) (Process, os.Error) {
16         return Attach(0)
17 }