delve/pkg/proc/native/followexec_other.go
2023-10-03 08:50:11 -07:00

11 lines
204 B
Go

//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")
}