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

Class CoreFileProcessManager

src/pystack/_pystack/process.h:167–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

165};
166
167class CoreFileProcessManager : public AbstractProcessManager
168{
169 public:
170 // Constructors
171 CoreFileProcessManager(
172 pid_t pid,
173 const std::shared_ptr<CoreFileAnalyzer>& analyzer,
174 std::vector<VirtualMap> memory_maps,
175 MemoryMapInformation map_info);
176
177 // Destructors
178 virtual ~CoreFileProcessManager() = default;
179
180 // Getters
181 const std::vector<int>& Tids() const override;
182
183 private:
184 // Data members
185 std::vector<int> d_tids;
186 std::optional<std::string> d_executable;
187};
188} // namespace pystack

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected