Commit f1eb0a05 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #705 from authorNari/compact_flags

Compact flags for GC
parents ab5dc724 602959ec
...@@ -121,9 +121,9 @@ typedef struct mrb_state { ...@@ -121,9 +121,9 @@ typedef struct mrb_state {
size_t gc_threshold; size_t gc_threshold;
int gc_interval_ratio; int gc_interval_ratio;
int gc_step_ratio; int gc_step_ratio;
int gc_disabled; unsigned int gc_disabled:1;
int gc_full; unsigned int gc_full:1;
int is_generational_gc_mode; unsigned int is_generational_gc_mode:1;
size_t majorgc_old_threshold; size_t majorgc_old_threshold;
struct alloca_header *mems; struct alloca_header *mems;
......
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