Commit 2b39d87f authored by furunkel's avatar furunkel

Remove gc_ prefix of mrb_gc fields

parent 2f8b0f66
...@@ -63,14 +63,14 @@ typedef struct mrb_gc { ...@@ -63,14 +63,14 @@ typedef struct mrb_gc {
#endif #endif
int arena_idx; 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 */ int current_white_part; /* make white object by white_part */
struct RBasic *gray_list; /* list of gray objects to be traversed incrementally */ struct RBasic *gray_list; /* list of gray objects to be traversed incrementally */
struct RBasic *atomic_gray_list; /* list of objects to be traversed atomically */ struct RBasic *atomic_gray_list; /* list of objects to be traversed atomically */
size_t gc_live_after_mark; size_t live_after_mark;
size_t gc_threshold; size_t threshold;
int gc_interval_ratio; int interval_ratio;
int gc_step_ratio; int step_ratio;
mrb_bool disabled :1; mrb_bool disabled :1;
mrb_bool full :1; mrb_bool full :1;
mrb_bool generational :1; mrb_bool generational :1;
......
This diff is collapsed.
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