From 780a5444026e461c8be27b8615a81360310582e7 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 17 May 2024 18:07:51 +0200 Subject: pkg/ipc: remove ExecOpts Switch to flatrpc.ExecOpts. --- pkg/fuzzer/queue/queue.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pkg/fuzzer/queue/queue.go') diff --git a/pkg/fuzzer/queue/queue.go b/pkg/fuzzer/queue/queue.go index 0e578c6f9..a9411c1bd 100644 --- a/pkg/fuzzer/queue/queue.go +++ b/pkg/fuzzer/queue/queue.go @@ -13,7 +13,6 @@ import ( "github.com/google/syzkaller/pkg/flatrpc" "github.com/google/syzkaller/pkg/hash" - "github.com/google/syzkaller/pkg/ipc" "github.com/google/syzkaller/pkg/signal" "github.com/google/syzkaller/pkg/stats" "github.com/google/syzkaller/prog" @@ -21,7 +20,7 @@ import ( type Request struct { Prog *prog.Prog - ExecOpts ipc.ExecOpts + ExecOpts flatrpc.ExecOpts // If specified, the resulting signal for call SignalFilterCall // will include subset of it even if it's not new. -- cgit mrf-deployment