android13/external/rust/crates/gdbstub/examples/armv4t/gdb/section_offsets.rs

18 lines
500 B
Rust

use gdbstub::target;
use gdbstub::target::ext::section_offsets::Offsets;
use crate::gdb::Emu;
// This implementation is for illustrative purposes only. If the offsets are
// guaranteed to be zero, this extension does not need to be implemented.
impl target::ext::section_offsets::SectionOffsets for Emu {
fn get_section_offsets(&mut self) -> Result<Offsets<u32>, Self::Error> {
Ok(Offsets::Sections {
text: 0,
data: 0,
bss: None,
})
}
}