summaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-15 07:59:33 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-15 07:59:33 +0000
commitb2f24741b567ec6dd8abb5f2bc2cb6ed2f271e01 (patch)
tree2ab44f11d701eac5dd9a3b60390d816d4f180f29 /vm_core.h
parentff6f9c6c3b08ac9c8c26a25fe1a2ac5abd9e24ee (diff)
downloadruby-b2f24741b567ec6dd8abb5f2bc2cb6ed2f271e01.tar.gz
ruby-b2f24741b567ec6dd8abb5f2bc2cb6ed2f271e01.tar.xz
ruby-b2f24741b567ec6dd8abb5f2bc2cb6ed2f271e01.zip
* vm_core.h (exec_event_hooks): skips RubyVM::FrozenCore.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18640 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm_core.h b/vm_core.h
index 829ac4593..2e8462422 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -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);