| 32 | } // anonymous |
| 33 | |
| 34 | ElfCoreStream::ElfCoreStream(const PhysicalLayer& phys, |
| 35 | const x86_64::PageTable& user_pt, |
| 36 | Process process, |
| 37 | std::vector<Vma> vmas) |
| 38 | : phys_(&phys), user_pt_(&user_pt), p_(std::move(process)), vmas_(std::move(vmas)) |
| 39 | { |
| 40 | plan(); |
| 41 | } |
| 42 | |
| 43 | void ElfCoreStream::plan() { |
| 44 | // Filter to readable, non-empty VMAs. No size cap any more — streaming |
nothing calls this directly
no outgoing calls
no test coverage detected