1
0
mirror of https://github.com/golang/go synced 2024-10-05 23:21:21 -06:00
go/src/syscall/exec_solaris_test.go

30 lines
605 B
Go
Raw Normal View History

// Copyright 2015 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.
// +build solaris
package syscall
var (
procGetpgid = modlibc.NewProc("getpgid")
procGetpgrp = modlibc.NewProc("getpgrp")
)
func Getpgid(pid int) (pgid int, err error) {
r0, _, e1 := sysvicall6(procGetpgid.Addr(), 1, uintptr(pid), 0, 0, 0, 0, 0)
pgid = int(r0)
if e1 != 0 {
err = e1
}
return
}
func Getpgrp() (pgrp int) {
r0, _, _ := sysvicall6(procGetpgrp.Addr(), 0, 0, 0, 0, 0, 0, 0)
pgrp = int(r0)
return
}
var Ioctl = ioctl