10000 gh-117142: ctypes: Migrate global closure freelist to thunk-type state by neonene · Pull Request #117874 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-117142: ctypes: Migrate global closure freelist to thunk-type state #117874

8000
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

Closed
wants to merge 11 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix tag name
  • Loading branch information
neonene committed Apr 14, 2024
commit f502626c99cb45bcf8d251eef19f0def9f8eadd1
4 changes: 2 additions & 2 deletions Modules/_ctypes/malloc_closure.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ typedef union _tagITEM {
union _tagITEM *next;
} ITEM;

typedef struct _arena {
struct _arena *prev_arena;
typedef struct _tagARENA {
struct _tagARENA *prev_arena;
ITEM items[1];
} ARENA;

Expand Down
0