aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/flatrpc/flatrpc.fbs
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-07-01 11:18:41 +0200
committerDmitry Vyukov <dvyukov@google.com>2024-07-01 10:13:03 +0000
commit00fb1747bb7633aa5bb3f7b13201d81dededfd49 (patch)
tree524890674969d7ec78a0dbeecd9d23cc5578d90a /pkg/flatrpc/flatrpc.fbs
parent714041c90b9b0efe7fb63d39fa6b0aa643f2450c (diff)
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.
Diffstat (limited to 'pkg/flatrpc/flatrpc.fbs')
-rw-r--r--pkg/flatrpc/flatrpc.fbs10
1 files changed, 5 insertions, 5 deletions
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 {