1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* gc.c (rb_gc): typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4267 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2003-08-01 11:01:04 +00:00
parent 070fcde39d
commit b27aa02015

2
gc.c
View file

@ -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;