Commit e27cc402 authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

replace RiteVM in comments by mruby

parent b8fc484d
/*
** gc.c - garbage collector for RiteVM
** gc.c - garbage collector for mruby
**
** See Copyright Notice in mruby.h
*/
......@@ -24,7 +24,7 @@
/*
= Tri-color Incremental Garbage Collection
RiteVM's GC is Tri-color Incremental GC with Mark & Sweep.
mruby's GC is Tri-color Incremental GC with Mark & Sweep.
Algorithm details are omitted.
Instead, the part about the implementation described below.
......@@ -61,7 +61,7 @@
= Write Barrier
RiteVM implementer, C extension library writer must write a write
mruby implementer, C extension library writer must write a write
barrier when writing a pointer to an object on object's field.
Two different write barrier:
......
/*
** state.c - RiteVM open/close functions
** state.c - mrb_state open/close functions
**
** See Copyright Notice in mruby.h
*/
......
/*
** vm.c - virtual machine for mruby (RiteVM)
** vm.c - virtual machine for mruby
**
** See Copyright Notice in mruby.h
*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment