We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a66c64a commit 1257c03Copy full SHA for 1257c03
src/pollcatch/mod.rs
@@ -17,6 +17,13 @@
17
//! let rt = rt.build().unwrap();
18
//! rt.block_on(your_main())
19
//! ```
20
+//!
21
+//! Except on a poll that is involved in a profiling sample, the poll hook overhead
22
+//! is limited to a few thread-local accesses and should be very very fast.
23
24
+//! When a profiling sample is taken (normally around 1 / second), it adds slightly
25
+//! more overhead to report the sample, but that is a matter of microseconds
26
+//! and therefore should not worsen tail latency problems.
27
28
use std::{
29
cell::Cell,
0 commit comments