summaryrefslogtreecommitdiffstats
path: root/env.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-20 08:33:49 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-20 08:33:49 +0000
commit6139f3ebed65764ba7aa7869ad8ecaec872cebc3 (patch)
tree8c8b6e6962798bc57a9519a6f140b79c009ee050 /env.h
parentd102618382ed7114eb64ffcafdfa9e64bac5e0b3 (diff)
downloadruby-6139f3ebed65764ba7aa7869ad8ecaec872cebc3.tar.gz
ruby-6139f3ebed65764ba7aa7869ad8ecaec872cebc3.tar.xz
ruby-6139f3ebed65764ba7aa7869ad8ecaec872cebc3.zip
* eval.c (PUSH_FRAME): generate unique number to be TAG_JUMP()
destination. * eval.c (localjump_destination): use unique number in ruby_frame for localjump destination. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'env.h')
-rw-r--r--env.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/env.h b/env.h
index 388c94693..c47c01d9d 100644
--- a/env.h
+++ b/env.h
@@ -25,6 +25,7 @@ extern struct FRAME {
struct RNode *node;
int iter;
int flags;
+ unsigned long uniq;
} *ruby_frame;
void rb_gc_mark_frame _((struct FRAME *));