diff --git a/libafl/src/events/llmp.rs b/libafl/src/events/llmp.rs index b8a1d70922..287513287a 100644 --- a/libafl/src/events/llmp.rs +++ b/libafl/src/events/llmp.rs @@ -866,7 +866,7 @@ where } // Storing state in the last round did not work - panic!("Fuzzer-respawner: Storing state in crashed fuzzer instance did not work, no point to spawn the next client! (Child exited with: {})", child_status); + panic!("Fuzzer-respawner: Storing state in crashed fuzzer instance did not work, no point to spawn the next client! This can happen if the child calls `exit()`, in that case make sure it uses `abort()`, if it got killed unrecoverable (OOM), or if there is a bug in the fuzzer itself. (Child exited with: {})", child_status); } ctr = ctr.wrapping_add(1); diff --git a/libafl/src/events/simple.rs b/libafl/src/events/simple.rs index 55bbd76a15..9a651a97dd 100644 --- a/libafl/src/events/simple.rs +++ b/libafl/src/events/simple.rs @@ -376,7 +376,7 @@ where } // Storing state in the last round did not work - panic!("Fuzzer-respawner: Storing state in crashed fuzzer instance did not work, no point to spawn the next client! (Child exited with: {})", child_status); + panic!("Fuzzer-respawner: Storing state in crashed fuzzer instance did not work, no point to spawn the next client! This can happen if the child calls `exit()`, in that case make sure it uses `abort()`, if it got killed unrecoverable (OOM), or if there is a bug in the fuzzer itself. (Child exited with: {})", child_status); } ctr = ctr.wrapping_add(1); diff --git a/libafl/src/lib.rs b/libafl/src/lib.rs index 6df1af87ff..339582d886 100644 --- a/libafl/src/lib.rs +++ b/libafl/src/lib.rs @@ -42,20 +42,20 @@ pub use fuzzer::*; /// The `stats` module got renamed to [`monitors`]. /// It monitors and displays the statistics of the fuzzing process. -#[deprecated(since = "0.6.0", note = "The `stats` module got renamed to `monitors`")] +#[deprecated(since = "0.7.0", note = "The `stats` module got renamed to `monitors`")] pub mod stats { #[deprecated( - since = "0.6.0", + since = "0.7.0", note = "Use monitors::MultiMonitor instead of stats::MultiStats!" )] pub use crate::monitors::MultiMonitor as MultiStats; #[deprecated( - since = "0.6.0", + since = "0.7.0", note = "Use monitors::SimpleMonitor instead of stats::SimpleStats!" )] pub use crate::monitors::SimpleMonitor as SimpleStats; #[deprecated( - since = "0.6.0", + since = "0.7.0", note = "Use monitors::UserMonitor instead of stats::SimpleStats!" )] pub use crate::monitors::UserStats;