We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
a_type
a_val
1 parent 7429eaa commit 16f3f83Copy full SHA for 16f3f83
1 file changed
src/elf.rs
@@ -247,10 +247,10 @@ pub const R_RELATIVE: u32 = 23; // `R_ARM_RELATIVE`
247
#[repr(C)]
248
#[derive(Clone)]
249
pub struct Elf_auxv_t {
250
- a_type: usize,
+ pub a_type: usize,
251
252
// Some of the values in the auxv array are pointers, so we make `a_val` a
253
// pointer, in order to preserve their provenance. For the values which are
254
// integers, we cast this to `usize`.
255
- a_val: *mut crate::ctypes::c_void,
+ pub a_val: *mut crate::ctypes::c_void,
256
}
0 commit comments