* gc.c : if ENABLE_VM_OBJSPACE is 1, rest_sweep is not defined.

remove unused declarations.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36627 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nari 2012-08-05 12:12:45 +00:00
Родитель dd124a0f84
Коммит 8f1c81c610
2 изменённых файлов: 6 добавлений и 3 удалений

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

@ -1,3 +1,8 @@
Sun Aug 5 21:10:36 2012 Narihiro Nakamura <authornari@gmail.com>
* gc.c : if ENABLE_VM_OBJSPACE is 1, rest_sweep is not defined.
remove unused declarations.
Sun Aug 5 19:31:57 2012 Narihiro Nakamura <authornari@gmail.com>
* gc.c: just move functions and so on. I don't touch any internal

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

@ -346,6 +346,7 @@ static VALUE lazy_sweep_enable(void);
static int garbage_collect(rb_objspace_t *);
static int gc_lazy_sweep(rb_objspace_t *);
static void mark_tbl(rb_objspace_t *, st_table *, int);
static void rest_sweep(rb_objspace_t *);
static double getrusage_time(void);
static inline void gc_prof_timer_start(rb_objspace_t *);
@ -377,9 +378,6 @@ rb_objspace_alloc(void)
#endif
#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
static void gc_sweep(rb_objspace_t *);
static void slot_sweep(rb_objspace_t *, struct heaps_slot *);
static void rest_sweep(rb_objspace_t *);
static void aligned_free(void *);
void