Commit 987e1198 authored by Joe Poirier's avatar Joe Poirier Committed by Russ Cox

Added mingw specific build stubs.

R=rsc
CC=golang-dev
https://golang.org/cl/198071
parent 1e66428d
// 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 MinGW yet.
func Attach(pid int) (Process, os.Error) {
return nil, os.NewError("debug/proc not implemented on MinGW")
}
func ForkExec(argv0 string, argv []string, envv []string, dir string, fd []*os.File) (Process, os.Error) {
return Attach(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
// 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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment