2016-05-19 17:12:50 +00:00
|
|
|
// +build solaris
|
|
|
|
|
2016-11-29 23:38:24 +00:00
|
|
|
package sys
|
2016-05-19 17:12:50 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
//Solaris TODO
|
2016-06-03 22:00:49 +00:00
|
|
|
|
2016-05-19 17:12:50 +00:00
|
|
|
// GetSubreaper returns the subreaper setting for the calling process
|
|
|
|
func GetSubreaper() (int, error) {
|
|
|
|
return 0, errors.New("osutils GetSubreaper not implemented on Solaris")
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetSubreaper sets the value i as the subreaper setting for the calling process
|
|
|
|
func SetSubreaper(i int) error {
|
|
|
|
return errors.New("osutils SetSubreaper not implemented on Solaris")
|
|
|
|
}
|