diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-01 11:01:04 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-01 11:01:04 +0000 |
commit | 0c8fa65f415a98871033039e399edc2b235e753f (patch) | |
tree | 11de3a5681c8ceb8c8eb214773cca5120c21fd8a | |
parent | 93b4df40ad121a8eb7e141698092faff129d2967 (diff) | |
download | ruby-0c8fa65f415a98871033039e399edc2b235e753f.tar.gz ruby-0c8fa65f415a98871033039e399edc2b235e753f.tar.xz ruby-0c8fa65f415a98871033039e399edc2b235e753f.zip |
* gc.c (rb_gc): typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4267 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1261,7 +1261,7 @@ rb_gc() ucontext_t ctx; VALUE *top, *bot; getcontext(&ctx); - rb_gc_mark_locations((VALUE*)&ctx.uc_mcontext, + mark_locations_array((VALUE*)&ctx.uc_mcontext, ((size_t)(sizeof(VALUE)-1 + sizeof ctx.uc_mcontext)/sizeof(VALUE))); bot = (VALUE*)__libc_ia64_register_backing_store_base; top = (VALUE*)ctx.uc_mcontext.sc_ar_bsp; |