aya/maps/perf/
mod.rs

1//! Ring buffer types used to receive events from eBPF programs using the linux
2//! `perf` API.
3//!
4//! See [`PerfEventArray`] and [`AsyncPerfEventArray`].
5#[cfg(any(feature = "async_tokio", feature = "async_std"))]
6#[cfg_attr(docsrs, doc(cfg(any(feature = "async_tokio", feature = "async_std"))))]
7mod async_perf_event_array;
8mod perf_buffer;
9mod perf_event_array;
10
11#[cfg(any(feature = "async_tokio", feature = "async_std"))]
12#[cfg_attr(docsrs, doc(cfg(any(feature = "async_tokio", feature = "async_std"))))]
13pub use async_perf_event_array::*;
14pub use perf_buffer::*;
15pub use perf_event_array::*;