]> gitweb.factorcode.org Git - factor.git/blob - vm/aging_space.hpp
vm: working on new object-oriented garbage collector
[factor.git] / vm / aging_space.hpp
1 namespace factor
2 {
3
4 struct aging_space : old_space {
5         aging_space(cell size, cell start) : old_space(size,start) {}
6
7         bool is_nursery_p() { return false; }
8         bool is_aging_p()   { return true; }
9         bool is_tenured_p() { return false; }
10 };
11
12 }