From a8d2e8711bf735f3b6455f4173f5510bf4d04160 Mon Sep 17 00:00:00 2001 From: "Dongjia \"toka\" Zhang" Date: Thu, 21 Nov 2024 16:18:45 +0100 Subject: [PATCH] More batched timeout doc (#2717) * timeout doc * clp * FMT * more --- libafl/src/executors/hooks/timer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl/src/executors/hooks/timer.rs b/libafl/src/executors/hooks/timer.rs index 97a6289f26..21d5541348 100644 --- a/libafl/src/executors/hooks/timer.rs +++ b/libafl/src/executors/hooks/timer.rs @@ -242,7 +242,7 @@ impl TimerStruct { #[cfg(target_os = "linux")] #[must_use] /// Constructor but use batch mode - /// Timeout mechanism with imprecise timing. + /// More efficient timeout mechanism with imprecise timing. /// /// The timeout will trigger after t seconds and at most within 2*t seconds. /// This means the actual timeout may occur anywhere in the range [t, 2*t],