delve/pkg/proc/native/followexec_other.go

11 lines
204 B
Go
Raw Normal View History

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