diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-07-01 11:18:41 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-07-01 10:13:03 +0000 |
| commit | 00fb1747bb7633aa5bb3f7b13201d81dededfd49 (patch) | |
| tree | 524890674969d7ec78a0dbeecd9d23cc5578d90a /executor | |
| parent | 714041c90b9b0efe7fb63d39fa6b0aa643f2450c (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 'executor')
| -rw-r--r-- | executor/executor_runner.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/executor/executor_runner.h b/executor/executor_runner.h index 766669dda..3bffcaeb2 100644 --- a/executor/executor_runner.h +++ b/executor/executor_runner.h @@ -508,7 +508,7 @@ private: Handle(*msg); else if (auto* msg = raw.msg.AsSignalUpdate()) Handle(*msg); - else if (auto* msg = raw.msg.AsStartLeakChecks()) + else if (auto* msg = raw.msg.AsCorpusTriaged()) Handle(*msg); else if (auto* msg = raw.msg.AsStateRequest()) Handle(*msg); @@ -637,10 +637,10 @@ private: max_signal_->Remove(pc); } - void Handle(const rpc::StartLeakChecksRawT& msg) + void Handle(const rpc::CorpusTriagedRawT& msg) { // TODO: repair leak checking (#4728). - debug("recv start leak checks\n"); + debug("recv corpus triaged\n"); } void Handle(const rpc::StateRequestRawT& msg) |
