diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-06-04 12:55:41 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-06-24 09:57:34 +0000 |
| commit | e16e2c9a4cb6937323e861b646792a6c4c978a3c (patch) | |
| tree | 6c513e98e5f465b44a98546d8984485d2c128582 /vm/gvisor/gvisor.go | |
| parent | 90d67044dab68568e8f35bc14b68055dbd166eff (diff) | |
executor: add runner mode
Move all syz-fuzzer logic into syz-executor and remove syz-fuzzer.
Also restore syz-runtest functionality in the manager.
Update #4917 (sets most signal handlers to SIG_IGN)
Diffstat (limited to 'vm/gvisor/gvisor.go')
| -rw-r--r-- | vm/gvisor/gvisor.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/vm/gvisor/gvisor.go b/vm/gvisor/gvisor.go index ed3018a51..6d26da5bb 100644 --- a/vm/gvisor/gvisor.go +++ b/vm/gvisor/gvisor.go @@ -244,14 +244,6 @@ func (inst *instance) Info() ([]byte, error) { return []byte(info), nil } -func (inst *instance) PprofPort() int { - // Some of the gVisor instances use the host's network namespace, which - // results in conflicting bind operations on the same HTTP port. - // Until there's an actual need to debug gVisor VMs with pprof, let's - // just disable it. - return 0 -} - func (inst *instance) runscCmd(add ...string) *exec.Cmd { cmd := osutil.Command(inst.image, append(inst.args(), add...)...) cmd.Env = []string{ |
