diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | vm_core.h | 1 |
2 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,6 @@ -Fri Aug 15 15:30:40 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> +Fri Aug 15 16:59:30 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * vm_core.h (exec_event_hooks): skips RubyVM::FrozenCore. * vm.c (Init_VM): get rid of SEGV in a trace proc. @@ -714,6 +714,7 @@ void rb_thread_execute_interrupts(rb_thread_t *); static inline void exec_event_hooks(rb_event_hook_t *hook, rb_event_flag_t flag, VALUE self, ID id, VALUE klass) { + if (self == rb_mRubyVMFrozenCore) return; while (hook) { if (flag & hook->flag) { (*hook->func)(flag, hook->data, self, id, klass); |