delve/pkg/proc/native/followexec_other.go

15 lines
302 B
Go
Raw Normal View History

//go:build !linux && !windows
package native
import "errors"
// FollowExec enables (or disables) follow exec mode
func (*nativeProcess) FollowExec(bool) error {
return errors.New("follow exec not implemented")
}
func (*processGroup) detachChild(*nativeProcess) error {
panic("not implemented")
}