We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e2ee13 commit 025f686Copy full SHA for 025f686
1 file changed
src/pystack/_pystack/cpython/runtime.h
@@ -455,6 +455,8 @@ typedef struct _Py_DebugOffsets
455
uint64_t gil_runtime_state_enabled;
456
uint64_t gil_runtime_state_locked;
457
uint64_t gil_runtime_state_holder;
458
+ uint64_t code_object_generation;
459
+ uint64_t tlbc_generation;
460
} interpreter_state;
461
462
// Thread state offset;
@@ -597,6 +599,12 @@ typedef struct _Py_DebugOffsets
597
599
uint64_t gi_frame_state;
598
600
} gen_object;
601
602
+ struct _llist_node
603
+ {
604
+ uint64_t next;
605
+ uint64_t prev;
606
+ } llist_node;
607
+
608
struct _debugger_support
609
{
610
uint64_t eval_breaker;
0 commit comments