123456789101112131415161718192021222324252627 |
- #![no_std]
- use aya_bpf::{
- macros::map,
- maps::{PerCpuArray, PerfEventByteArray},
- };
- pub use aya_log_common::{write_record_header, Level, WriteToBuf, LOG_BUF_CAPACITY};
- pub use aya_log_ebpf_macros::{debug, error, info, log, trace, warn};
- #[doc(hidden)]
- #[repr(C)]
- pub struct LogBuf {
- pub buf: [u8; LOG_BUF_CAPACITY],
- }
- #[doc(hidden)]
- #[map]
- pub static mut AYA_LOG_BUF: PerCpuArray<LogBuf> = PerCpuArray::with_max_entries(1, 0);
- #[doc(hidden)]
- #[map]
- pub static mut AYA_LOGS: PerfEventByteArray = PerfEventByteArray::new(0);
- #[doc(hidden)]
- pub mod macro_support {
- pub use aya_log_common::{DisplayHint, Level, LOG_BUF_CAPACITY};
- pub use aya_log_ebpf_macros::log;
- }
|