gitlab.com/Raven-IO/raven-delve@v1.22.4/pkg/proc/native/followexec_other.go (about) 1 //go:build !linux && !windows 2 3 package native 4 5 import "errors" 6 7 // FollowExec enables (or disables) follow exec mode 8 func (*nativeProcess) FollowExec(bool) error { 9 return errors.New("follow exec not implemented") 10 } 11 12 func (*processGroup) detachChild(*nativeProcess) error { 13 panic("not implemented") 14 }