MCPcopy Create free account
hub / github.com/CodSpeedHQ/codspeed / LoadedModule

Class LoadedModule

src/executor/wall_time/profiler/perf/loaded_module.rs:12–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10/// mapped this module.
11#[derive(Default)]
12pub 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)]
22pub struct ProcessLoadedModule {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected