| 148 | }; |
| 149 | |
| 150 | class CoreFileUnwinder : public AbstractUnwinder |
| 151 | { |
| 152 | public: |
| 153 | // Constructors |
| 154 | explicit CoreFileUnwinder(std::shared_ptr<CoreFileAnalyzer> analyzer); |
| 155 | |
| 156 | // Methods |
| 157 | virtual struct Dwfl* Dwfl() const override; |
| 158 | std::vector<int> getCoreTids() const; |
| 159 | std::vector<NativeFrame> unwindThread(pid_t tid) const override; |
| 160 | |
| 161 | private: |
| 162 | // Data members |
| 163 | std::shared_ptr<CoreFileAnalyzer> d_analyzer; |
| 164 | }; |
| 165 | } // namespace pystack |
nothing calls this directly
no outgoing calls
no test coverage detected