32bf0f69fd
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
12 lines
180 B
Go
12 lines
180 B
Go
// +build solaris
|
|
|
|
package main
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// setPDeathSig is a no-op on Solaris as Pdeathsig is not defined.
|
|
func setPDeathSig() *syscall.SysProcAttr {
|
|
return nil
|
|
}
|