Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorl committed Oct 23, 2012
2 parents bf72c5c + 78bef79 commit af93a6d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/pmc/filehandle.pmc
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ Mark active filehandle data as live.
Parrot_gc_mark_STRING_alive(INTERP, attrs->mode);
Parrot_gc_mark_STRING_alive(INTERP, attrs->filename);
Parrot_gc_mark_STRING_alive(INTERP, attrs->encoding);
Parrot_gc_mark_STRING_alive(INTERP, attrs->record_separator);
Parrot_io_buffer_mark(interp, attrs->read_buffer);
Parrot_io_buffer_mark(interp, attrs->write_buffer);
}
Expand Down
2 changes: 2 additions & 0 deletions src/pmc/socket.pmc
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ Mark active socket handle data as live.
if (data) {
Parrot_gc_mark_PMC_alive(INTERP, data->local);
Parrot_gc_mark_PMC_alive(INTERP, data->remote);
Parrot_gc_mark_STRING_alive(INTERP, data->encoding);
Parrot_gc_mark_STRING_alive(INTERP, data->record_separator);
Parrot_io_buffer_mark(interp, data->read_buffer);
Parrot_io_buffer_mark(interp, data->write_buffer);
}
Expand Down
1 change: 1 addition & 0 deletions src/pmc/stringhandle.pmc
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ Mark active stringhandle data as live.
Parrot_gc_mark_STRING_alive(INTERP, data_struct->mode);
Parrot_gc_mark_STRING_alive(INTERP, data_struct->encoding);
Parrot_gc_mark_STRING_alive(INTERP, data_struct->filename);
Parrot_gc_mark_STRING_alive(INTERP, data_struct->record_separator);
Parrot_io_buffer_mark(interp, data_struct->read_buffer);
Parrot_io_buffer_mark(interp, data_struct->write_buffer);
}
Expand Down

0 comments on commit af93a6d

Please sign in to comment.