Expand description

The InProcessExecutor is a libfuzzer-like executor, that will simply call a function. It should usually be paired with extra error-handling, such as a restarting event manager, to be effective.

Needs the fork feature flag.

Modules

signal handlers and panic_hooks for the child process

Structs

The inmem executor simply calls a target function, then returns afterwards.

The inmem fork executor’s handlers.

InProcessForkExecutor is an executor that forks the current process before each execution.

The inmem executor’s handlers.

Functions

Type Definitions

The process executor simply calls a target function, as mutable reference to a closure

The process executor simply calls a target function, as boxed FnMut trait object