From cbd0445ec3b0b184db66966d8a47e6b37d13692e Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 25 Nov 2020 09:17:50 +0100 Subject: all: make timeouts configurable Add sys/targets.Timeouts struct that parametrizes timeouts throughout the system. The struct allows to control syscall/program/no output timeouts for OS/arch/VM/etc. See comment on the struct for more details. --- tools/syz-hubtool/hubtool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/syz-hubtool') diff --git a/tools/syz-hubtool/hubtool.go b/tools/syz-hubtool/hubtool.go index bf5f6c20b..491191a4c 100644 --- a/tools/syz-hubtool/hubtool.go +++ b/tools/syz-hubtool/hubtool.go @@ -51,7 +51,7 @@ func main() { return } log.Printf("connecting to hub at %v...", *flagHubAddress) - conn, err := rpctype.NewRPCClient(*flagHubAddress) + conn, err := rpctype.NewRPCClient(*flagHubAddress, 1) if err != nil { log.Fatalf("failed to connect to hub: %v", err) } -- cgit mrf-deployment