aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/rpcserver/runner.go
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/rpcserver/runner.go
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/rpcserver/runner.go')
-rw-r--r--pkg/rpcserver/runner.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/rpcserver/runner.go b/pkg/rpcserver/runner.go
index 22d85f0c6..0c41346ee 100644
--- a/pkg/rpcserver/runner.go
+++ b/pkg/rpcserver/runner.go
@@ -281,11 +281,11 @@ func (runner *Runner) sendSignalUpdate(plus, minus []uint64) error {
return flatrpc.Send(runner.conn, msg)
}
-func (runner *Runner) sendStartLeakChecks() error {
+func (runner *Runner) sendCorpusTriaged() error {
msg := &flatrpc.HostMessage{
Msg: &flatrpc.HostMessages{
- Type: flatrpc.HostMessagesRawStartLeakChecks,
- Value: &flatrpc.StartLeakChecks{},
+ Type: flatrpc.HostMessagesRawCorpusTriaged,
+ Value: &flatrpc.CorpusTriaged{},
},
}
return flatrpc.Send(runner.conn, msg)