-
-
Notifications
You must be signed in to change notification settings - Fork 33.2k
gh-128563: Move lltrace into the frame struct #129113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 13 commits
f79e7d1
da0d7ae
989f841
8036199
d3d1dbf
e062681
6ba4e59
959ba82
134d2a0
732c6b4
c7bdb4f
a28f2c5
ef209db
3f51e08
f2cd968
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,12 @@ typedef struct _PyInterpreterFrame { | |
_PyStackRef *stackpointer; | ||
uint16_t return_offset; /* Only relevant during a function call */ | ||
char owner; | ||
#ifdef Py_DEBUG | ||
char visited:4; | ||
char lltrace:4; | ||
|
||
#else | ||
char visited; | ||
#endif | ||
/* Locals and stack */ | ||
_PyStackRef localsplus[1]; | ||
} _PyInterpreterFrame; | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.