summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-08-19 08:35:23 +0900
committerYukihiro Matsumoto <[email protected]>2012-08-19 08:35:23 +0900
commite27cc402da93569cabfdda2abd1ea0f17d2c63d4 (patch)
tree244d4d42a88d4590f5a58fc1e10ac90fa4829285 /src
parentb8fc484d2ea97e8eb6bc25744d3e192580e1504d (diff)
downloadmruby-e27cc402da93569cabfdda2abd1ea0f17d2c63d4.tar.gz
mruby-e27cc402da93569cabfdda2abd1ea0f17d2c63d4.zip
replace RiteVM in comments by mruby
Diffstat (limited to 'src')
-rw-r--r--src/gc.c6
-rw-r--r--src/state.c2
-rw-r--r--src/vm.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/gc.c b/src/gc.c
index 3af163010..9286f361b 100644
--- a/src/gc.c
+++ b/src/gc.c
@@ -1,5 +1,5 @@
/*
-** 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:
diff --git a/src/state.c b/src/state.c
index 41a851380..0a4268ecd 100644
--- a/src/state.c
+++ b/src/state.c
@@ -1,5 +1,5 @@
/*
-** state.c - RiteVM open/close functions
+** state.c - mrb_state open/close functions
**
** See Copyright Notice in mruby.h
*/
diff --git a/src/vm.c b/src/vm.c
index c000c4049..cff09c96e 100644
--- a/src/vm.c
+++ b/src/vm.c
@@ -1,5 +1,5 @@
/*
-** vm.c - virtual machine for mruby (RiteVM)
+** vm.c - virtual machine for mruby
**
** See Copyright Notice in mruby.h
*/