summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorfurunkel <[email protected]>2015-10-19 23:00:07 +0200
committerfurunkel <[email protected]>2015-10-19 23:00:07 +0200
commit2b39d87fe8794ac66bce4896f1ec346579983500 (patch)
tree2e9b3d10153524a0a306292dbd9599d86f61fe7a /include
parent2f8b0f66bcce744a5cf6320237087d29313c9855 (diff)
downloadmruby-2b39d87fe8794ac66bce4896f1ec346579983500.tar.gz
mruby-2b39d87fe8794ac66bce4896f1ec346579983500.zip
Remove gc_ prefix of mrb_gc fields
Diffstat (limited to 'include')
-rw-r--r--include/mruby/gc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/mruby/gc.h b/include/mruby/gc.h
index d7687c05e..3c19e13e8 100644
--- a/include/mruby/gc.h
+++ b/include/mruby/gc.h
@@ -63,14 +63,14 @@ typedef struct mrb_gc {
#endif
int arena_idx;
- mrb_gc_state gc_state; /* state of gc */
+ mrb_gc_state state; /* state of gc */
int current_white_part; /* make white object by white_part */
struct RBasic *gray_list; /* list of gray objects to be traversed incrementally */
struct RBasic *atomic_gray_list; /* list of objects to be traversed atomically */
- size_t gc_live_after_mark;
- size_t gc_threshold;
- int gc_interval_ratio;
- int gc_step_ratio;
+ size_t live_after_mark;
+ size_t threshold;
+ int interval_ratio;
+ int step_ratio;
mrb_bool disabled :1;
mrb_bool full :1;
mrb_bool generational :1;