Function deinit [src]
Prototype
pub fn deinit(fuzz: *Fuzz) void
Parameters
fuzz: *Fuzz
Source
pub fn deinit(fuzz: *Fuzz) void {
if (true) @panic("TODO: terminate the fuzzer processes");
fuzz.wait_group.wait();
fuzz.prog_node.end();
const gpa = fuzz.ws.gpa;
gpa.free(fuzz.run_steps);
}