* gc.c: define gc_profile_record::allocated_size if

CALC_EXACT_MALLOC_SIZE is true.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43130 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2013-10-03 09:03:06 +00:00
Родитель 870dc20922
Коммит fa105e6c20
2 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Thu Oct 3 18:01:44 2013 Koichi Sasada <ko1@atdot.net>
* gc.c: define gc_profile_record::allocated_size if
CALC_EXACT_MALLOC_SIZE is true.
Thu Oct 3 13:42:51 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* common.mk (yes-test-sample): use RUNRUBY instead of MINIRUBY to set

7
gc.c
Просмотреть файл

@ -217,15 +217,16 @@ typedef struct gc_profile_record {
size_t allocate_increase;
size_t allocate_limit;
#if CALC_EXACT_MALLOC_SIZE
size_t allocated_size;
#endif
double prepare_time;
size_t removing_objects;
size_t empty_objects;
#endif
#if CALC_EXACT_MALLOC_SIZE
size_t allocated_size;
#endif
#if RGENGC_PROFILE > 0
size_t oldgen_objects;
size_t remembered_normal_objects;