Tamir Duberstein 6 mesiacov pred
rodič
commit
4362020691

+ 2 - 2
aya/src/programs/raw_trace_point.rs

@@ -25,8 +25,8 @@ use crate::{
 /// # Examples
 ///
 /// ```no_run
-/// # let mut bpf = Ebpf::load_file("ebpf_programs.o")?;
-/// use aya::{Ebpf, programs::RawTracePoint};
+/// # let mut bpf = aya::Ebpf::load(&[])?;
+/// use aya::programs::RawTracePoint;
 ///
 /// let program: &mut RawTracePoint = bpf.program_mut("sys_enter").unwrap().try_into()?;
 /// program.load()?;

+ 1 - 12
aya/src/programs/trace_point.rs

@@ -41,24 +41,13 @@ pub enum TracePointError {
 /// # Examples
 ///
 /// ```no_run
-/// # #[derive(Debug, thiserror::Error)]
-/// # enum Error {
-/// #     #[error(transparent)]
-/// #     IO(#[from] std::io::Error),
-/// #     #[error(transparent)]
-/// #     Map(#[from] aya::maps::MapError),
-/// #     #[error(transparent)]
-/// #     Program(#[from] aya::programs::ProgramError),
-/// #     #[error(transparent)]
-/// #     Ebpf(#[from] aya::EbpfError)
-/// # }
 /// # let mut bpf = aya::Ebpf::load(&[])?;
 /// use aya::programs::TracePoint;
 ///
 /// let prog: &mut TracePoint = bpf.program_mut("trace_context_switch").unwrap().try_into()?;
 /// prog.load()?;
 /// prog.attach("sched", "sched_switch")?;
-/// # Ok::<(), Error>(())
+/// # Ok::<(), aya::EbpfError>(())
 /// ```
 #[derive(Debug)]
 #[doc(alias = "BPF_PROG_TYPE_TRACEPOINT")]