mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
346 B
Rust
20 lines
346 B
Rust
use core::ffi::c_void;
|
|
|
|
use crate::BpfContext;
|
|
|
|
pub struct BtfTracePointContext {
|
|
ctx: *mut c_void,
|
|
}
|
|
|
|
impl BtfTracePointContext {
|
|
pub fn new(ctx: *mut c_void) -> BtfTracePointContext {
|
|
BtfTracePointContext { ctx }
|
|
}
|
|
}
|
|
|
|
impl BpfContext for BtfTracePointContext {
|
|
fn as_ptr(&self) -> *mut c_void {
|
|
self.ctx
|
|
}
|
|
}
|