MCPcopy Create free account
hub / github.com/MultiFuzz/MultiFuzz / new_debug

Method new_debug

hail-fuzz/src/main.rs:536–541  ·  view source on GitHub ↗
(config: Config)

Source from the content-addressed store, hash-verified

534
535impl Fuzzer {
536 pub fn new_debug(config: Config) -> anyhow::Result<Self> {
537 let global_queue = Arc::new(GlobalQueue::init(1));
538 let monitor = Arc::new(std::sync::Mutex::new(Monitor::new()));
539 let global = GlobalRef::new(0, global_queue, Some(monitor));
540 Self::new(config, global)
541 }
542
543 pub fn new(mut config: Config, global: GlobalRef) -> anyhow::Result<Self> {
544 let features = config::EnabledFeatures::from_env()?;

Callers

nothing calls this directly

Calls 1

initFunction · 0.50

Tested by

no test coverage detected