OSDN Git Service

libgo: Update to weekly 2011-11-09.
[pf3gnuchains/gcc-fork.git] / libgo / go / debug / proc / proc_irix.go
1 // Copyright 2011 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 IRIX yet.
10
11 func Attach(pid int) (Process, os.Error) {
12         return nil, os.NewError("debug/proc not implemented on IRIX")
13 }
14
15 func ForkExec(argv0 string, argv []string, envv []string, dir string, fd []*os.File) (Process, os.Error) {
16         return Attach(0)
17 }