| 257 | type ElfResult = std::result::Result<(), ElfLoaderErr>; |
| 258 | |
| 259 | struct Loadable { |
| 260 | content: Vec<u8>, |
| 261 | mapping: MappedMemory, |
| 262 | virt_offset: usize, |
| 263 | } |
| 264 | |
| 265 | macro_rules! try_elf { |
| 266 | ($expr: expr, $str: expr) => { |
nothing calls this directly
no outgoing calls
no test coverage detected