delve/pkg/proc/native/followexec_other.go

12 lines
221 B
Go
Raw Normal View History

//go:build !linux
// +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")
}