delve/pkg/proc/native/followexec_other.go
2023-10-13 16:51:11 +02:00

15 lines
302 B
Go

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