| 10 | /// mapped this module. |
| 11 | #[derive(Default)] |
| 12 | pub struct LoadedModule { |
| 13 | /// Symbols extracted from the mapped ELF file |
| 14 | pub module_symbols: Option<ModuleSymbols>, |
| 15 | /// Unwind data extracted from the mapped ELF file |
| 16 | pub unwind_data: Option<UnwindData>, |
| 17 | /// Per-process mounting information |
| 18 | pub process_loaded_modules: HashMap<pid_t, ProcessLoadedModule>, |
| 19 | } |
| 20 | |
| 21 | #[derive(Default)] |
| 22 | pub struct ProcessLoadedModule { |
nothing calls this directly
no outgoing calls
no test coverage detected