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

Class NativeFrame

src/pystack/_pystack/native_frame.h:8–16  ·  view source on GitHub ↗

The reason this is a struct is so Cython can easily generate automatic conversions without explicit code.

Source from the content-addressed store, hash-verified

6// The reason this is a struct is so Cython can easily generate
7// automatic conversions without explicit code.
8struct NativeFrame
9{
10 unsigned long address;
11 std::string symbol;
12 std::string path;
13 int linenumber;
14 int colnumber;
15 std::string library;
16};
17} // namespace pystack

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected