summaryrefslogtreecommitdiffhomepage
path: root/include/mruby.h
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-03-14 04:51:14 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2013-03-14 04:51:14 -0700
commitce1756b3b6a23050d96d49aef64a7f964e8bc75f (patch)
treed6a5e4741a5bd045d2eb3c3c4cb194310454e892 /include/mruby.h
parent38571fd76994806ee33b1fa2400d1de92de7bdb7 (diff)
parent1ffc9ba3255f8b63164c42ea8304115f5a6b2464 (diff)
downloadmruby-ce1756b3b6a23050d96d49aef64a7f964e8bc75f.tar.gz
mruby-ce1756b3b6a23050d96d49aef64a7f964e8bc75f.zip
Merge pull request #997 from monaka/pr-add-type-mrb_bool_t
Define mrb_bool_t.
Diffstat (limited to 'include/mruby.h')
-rw-r--r--include/mruby.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mruby.h b/include/mruby.h
index 018a6a678..1054fd639 100644
--- a/include/mruby.h
+++ b/include/mruby.h
@@ -121,9 +121,9 @@ typedef struct mrb_state {
size_t gc_threshold;
int gc_interval_ratio;
int gc_step_ratio;
- unsigned int gc_disabled:1;
- unsigned int gc_full:1;
- unsigned int is_generational_gc_mode:1;
+ mrb_bool gc_disabled:1;
+ mrb_bool gc_full:1;
+ mrb_bool is_generational_gc_mode:1;
size_t majorgc_old_threshold;
struct alloca_header *mems;