mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Correct comments in gc.c
This commit is contained in:
@@ -579,10 +579,10 @@ mark_context(mrb_state *mrb, struct mrb_context *c)
|
||||
int i;
|
||||
mrb_callinfo *ci;
|
||||
|
||||
/* mark stack */
|
||||
/* mark VM stack */
|
||||
mark_context_stack(mrb, c);
|
||||
|
||||
/* mark VM stack */
|
||||
/* mark call stack */
|
||||
if (c->cibase) {
|
||||
for (ci = c->cibase; ci <= c->ci; ci++) {
|
||||
mrb_gc_mark(mrb, (struct RBasic*)ci->env);
|
||||
|
||||
Reference in New Issue
Block a user