2023-10-13 14:51:11 +00:00
|
|
|
//go:build !linux && !windows
|
2023-02-22 17:26:28 +00:00
|
|
|
|
|
|
|
package native
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
// FollowExec enables (or disables) follow exec mode
|
|
|
|
func (*nativeProcess) FollowExec(bool) error {
|
|
|
|
return errors.New("follow exec not implemented")
|
|
|
|
}
|
2023-10-13 14:51:11 +00:00
|
|
|
|
|
|
|
func (*processGroup) detachChild(*nativeProcess) error {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|