
Adds the ability to automatically debug child processes executed by the target to the linux native backend. This commit does not contain user interface or API to access this functionality. Updates #2551
12 lines
221 B
Go
12 lines
221 B
Go
//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")
|
|
}
|