8000 Add options to dump T_NONE objects and add page numbers by tenderlove · Pull Request #33 · github/ruby · GitHub
[go: up one dir, main page]

Skip to content

Add options to dump T_NONE objects and add page numbers #33

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 2 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
Revert "objspace_dump.c: dc is no longer used [ci skip]"
This reverts commit cf6ca2d.
  • Loading branch information
tenderlove committed Sep 20, 2016
commit b7ec21fb0a7069c82202d71d23e2d4b1cc387b87
1 change: 1 addition & 0 deletions ext/objspace/objspace_dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,7 @@ dump_object(VALUE obj, struct dump_config *dc)
static int
heap_i(void *vstart, void *vend, size_t stride, void *data)
{
struct dump_config *dc = (struct dump_config *)data;
VALUE v = (VALUE)vstart;
for (; v != (VALUE)vend; v += stride) {
if (RBASIC(v)->flags)
Expand Down
0