diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:35:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:35:37 +0000 |
commit | a90a5cba08fdf6c0ceb95101c275108a152a3aed (patch) | |
tree | 532507288f3defd7f4dcf1af49698bcb76034855 /tools/fuzzing/ipc/IPCFuzzController.h | |
parent | Adding debian version 126.0.1-1. (diff) | |
download | firefox-a90a5cba08fdf6c0ceb95101c275108a152a3aed.tar.xz firefox-a90a5cba08fdf6c0ceb95101c275108a152a3aed.zip |
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tools/fuzzing/ipc/IPCFuzzController.h')
-rw-r--r-- | tools/fuzzing/ipc/IPCFuzzController.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/tools/fuzzing/ipc/IPCFuzzController.h b/tools/fuzzing/ipc/IPCFuzzController.h index 756a68f38f..5c27443381 100644 --- a/tools/fuzzing/ipc/IPCFuzzController.h +++ b/tools/fuzzing/ipc/IPCFuzzController.h @@ -138,13 +138,24 @@ class IPCFuzzController { // If set, `lastActorPortName` is valid and fuzzing is pinned to this port. Atomic<bool> useLastPortName; - // Last port where a new actor appeared. Only valid with `useLastPortName`. + // If set, `lastActorPortName` is valid and fuzzing is forever pinned to this + // port. + Atomic<bool> useLastPortNameAlways; + + // If set, the toplevel actor will be from fuzzing. + Atomic<bool> protoFilterTargetExcludeToplevel; + + // Last port where a new actor appeared. Only valid with + // `useLastPortName`. mojo::core::ports::PortName lastActorPortName; // Counter to indicate how long fuzzing should stay pinned to the last // actor that appeared on `lastActorPortName`. Atomic<uint32_t> useLastActor; + // If this is non-zero, we want a specific actor ID instead of the last. + Atomic<int32_t> maybeLastActorId; + // This is the deterministic ordering of toplevel actors for fuzzing. // In this matrix, each row (toplevel index) corresponds to one toplevel // actor *type* while each entry in that row is an instance of that type, |