github.com/cnboonhan/delve@v0.0.0-20230908061759-363f2388c2fb/pkg/proc/native/followexec_other.go (about) 1 //go:build !linux 2 // +build !linux 3 4 package native 5 6 import "errors" 7 8 // FollowExec enables (or disables) follow exec mode 9 func (*nativeProcess) FollowExec(bool) error { 10 return errors.New("follow exec not implemented") 11 }