mirror of
https://github.com/ruby/ruby.git
synced 2026-01-26 12:14:51 +00:00
Rename rb_hook_list_mark_and_update to rb_hook_list_mark_and_move
This commit is contained in:
parent
47d4cceeff
commit
6c0315d99a
2
iseq.c
2
iseq.c
@ -432,7 +432,7 @@ rb_iseq_mark_and_move(rb_iseq_t *iseq, bool reference_updating)
|
||||
VM_ASSERT(ISEQ_EXECUTABLE_P(iseq));
|
||||
|
||||
if (iseq->aux.exec.local_hooks) {
|
||||
rb_hook_list_mark_and_update(iseq->aux.exec.local_hooks);
|
||||
rb_hook_list_mark_and_move(iseq->aux.exec.local_hooks);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -2190,7 +2190,7 @@ struct rb_trace_arg_struct {
|
||||
};
|
||||
|
||||
void rb_hook_list_mark(rb_hook_list_t *hooks);
|
||||
void rb_hook_list_mark_and_update(rb_hook_list_t *hooks);
|
||||
void rb_hook_list_mark_and_move(rb_hook_list_t *hooks);
|
||||
void rb_hook_list_free(rb_hook_list_t *hooks);
|
||||
void rb_hook_list_connect_tracepoint(VALUE target, rb_hook_list_t *list, VALUE tpval, unsigned int target_line);
|
||||
void rb_hook_list_remove_tracepoint(rb_hook_list_t *list, VALUE tpval);
|
||||
|
||||
@ -71,7 +71,7 @@ rb_hook_list_mark(rb_hook_list_t *hooks)
|
||||
}
|
||||
|
||||
void
|
||||
rb_hook_list_mark_and_update(rb_hook_list_t *hooks)
|
||||
rb_hook_list_mark_and_move(rb_hook_list_t *hooks)
|
||||
{
|
||||
rb_event_hook_t *hook = hooks->hooks;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user