8000 GH-117108: Set the "old space bit" to "visited" for all young objects by markshannon · Pull Request #117213 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-117108: Set the "old space bit" to "visited" for all young objects #117213

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

Merged
merged 3 commits into from
Mar 26, 2024
Merged
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
Merge branch 'main' into fix-gc-young-old-space
  • Loading branch information
markshannon committed Mar 26, 2024
commit bba8f31c52dc98c61c88557b4d227c63917c8d7d
1 change: 0 additions & 1 deletion Python/gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1439,7 +1439,6 @@ gc_collect_increment(PyThreadState *tstate, struct gc_collection_stats *stats)
increment_size += expand_region_transitively_reachable(&increment, gc, gcstate);
}
gc_list_validate_space(&increment, gcstate->visited_space);
GC_STAT_ADD(1, objects_queued, region_size);
PyGC_Head survivors;
gc_list_init(&survivors);
gc_collect_region(tstate, &increment, &survivors, UNTRACK_TUPLES, stats);
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0