syscall: make pipe work on netbsd

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5504070
This commit is contained in:
Joel Sing 2011-12-23 02:47:48 +11:00
parent a626adce1e
commit f1ebbf80bd
3 changed files with 6 additions and 6 deletions

View file

@ -62,13 +62,13 @@ func ParseDirent(buf []byte, max int, names []string) (consumed int, count int,
return origlen - len(buf), count, names
}
//sysnb pipe(p *[2]_C_int) (err error)
//sysnb pipe2(p *[2]_C_int, flags _C_int) (err error)
func Pipe(p []int) (err error) {
if len(p) != 2 {
return EINVAL
}
var pp [2]_C_int
err = pipe(&pp)
err = pipe2(&pp, 0)
p[0] = int(pp[0])
p[1] = int(pp[1])
return