github.com/runcom/containerd@v0.0.0-20160708090337-9bff9f934c0d/containerd-shim/process_pdeathsig_unsupported.go (about) 1 // +build solaris 2 3 package main 4 5 import ( 6 "syscall" 7 ) 8 9 // setPDeathSig is a no-op on Solaris as Pdeathsig is not defined. 10 func setPDeathSig() *syscall.SysProcAttr { 11 return nil 12 }