summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-07-24 07:18:50 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2013-07-24 07:18:50 -0700
commite1706e65f993e593e9b6c8ffc9c4a7159c9e44ed (patch)
tree897985fdfcdf7032742d5911e4d73a9aafe8cb7d /include
parent342bb66d6abf7d89ccdcc0c97519db8f0c1c0197 (diff)
parent0c0efc16b08237d30fc30f03033140d2844d6e74 (diff)
downloadmruby-e1706e65f993e593e9b6c8ffc9c4a7159c9e44ed.tar.gz
mruby-e1706e65f993e593e9b6c8ffc9c4a7159c9e44ed.zip
Merge pull request #1407 from Fleurer/gc-introduce-incremental-gc-step
separate out `incremental_gc_step()` from `mrb_incremental_gc()`, and misc minor rename
Diffstat (limited to 'include')
-rw-r--r--include/mruby.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby.h b/include/mruby.h
index ba9bbf58d..33d866bd0 100644
--- a/include/mruby.h
+++ b/include/mruby.h
@@ -272,7 +272,7 @@ mrb_value mrb_Float(mrb_state *mrb, mrb_value val);
mrb_value mrb_inspect(mrb_state *mrb, mrb_value obj);
mrb_bool mrb_eql(mrb_state *mrb, mrb_value obj1, mrb_value obj2);
-void mrb_garbage_collect(mrb_state*);
+void mrb_full_gc(mrb_state*);
void mrb_incremental_gc(mrb_state *);
int mrb_gc_arena_save(mrb_state*);
void mrb_gc_arena_restore(mrb_state*,int);