From 00fb1747bb7633aa5bb3f7b13201d81dededfd49 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 1 Jul 2024 11:18:41 +0200 Subject: pkg/flatrpc: rename StartLeakChecks to CorpusTriaged It's a more general name that says what happened rather than a detail of what excutor should do. We can use this notification for other things as well. --- pkg/flatrpc/flatrpc.fbs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'pkg/flatrpc/flatrpc.fbs') diff --git a/pkg/flatrpc/flatrpc.fbs b/pkg/flatrpc/flatrpc.fbs index b51ea0c70..58a6b3250 100644 --- a/pkg/flatrpc/flatrpc.fbs +++ b/pkg/flatrpc/flatrpc.fbs @@ -83,7 +83,7 @@ table FeatureInfoRaw { union HostMessagesRaw { ExecRequest :ExecRequestRaw, SignalUpdate :SignalUpdateRaw, - StartLeakChecks :StartLeakChecksRaw, + CorpusTriaged :CorpusTriagedRaw, StateRequest :StateRequestRaw, } @@ -165,10 +165,10 @@ table SignalUpdateRaw { drop_max :[uint64]; } -// Leak checking is very slow so we don't do it while triaging the corpus -// (otherwise it takes infinity). This message serves as a signal that -// the corpus was triaged and the fuzzer can start leak checking. -table StartLeakChecksRaw { +// This message serves as a signal that the corpus was triaged and the fuzzer +// can start activities that only make sense after corpus triage +// (leak checking, restarting procs, etc). +table CorpusTriagedRaw { } table StateRequestRaw { -- cgit mrf-deployment