summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-09 02:59:08 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-09 02:59:08 +0000
commitce71cfaa42d56f805112170ec41fe37a63933d66 (patch)
tree84f2e748bd8bc5aeab5ab5aeddbddfb63515b3d8 /gc.c
parentc5e13c3270dc26d59682fea7b2aac7c25daf1f97 (diff)
* gc.c (rb_objspace_t::profile): reduce padding.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47462 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index 3c1c15e3b1..d98241bcc1 100644
--- a/gc.c
+++ b/gc.c
@@ -509,6 +509,7 @@ typedef struct rb_objspace {
mark_stack_t mark_stack;
struct {
int run;
+ int latest_gc_info;
gc_profile_record *records;
gc_profile_record *current_record;
size_t next_index;
@@ -550,7 +551,6 @@ typedef struct rb_objspace {
size_t count;
size_t total_allocated_object_num;
size_t total_freed_object_num;
- int latest_gc_info;
} profile;
struct gc_list *global_list;
rb_event_flag_t hook_events; /* this place may be affinity with memory cache */