MCPcopy Create free account
hub / github.com/bloomberg/pystack / CoreFileUnwinder

Class CoreFileUnwinder

src/pystack/_pystack/unwinder.h:150–164  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148};
149
150class 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected