]> gitweb.factorcode.org Git - factor.git/blob - vm/tenured_space.hpp
Merge branch 'bitfields' of git://factorcode.org/git/factor into bitfields
[factor.git] / vm / tenured_space.hpp
1 namespace factor
2 {
3
4 struct tenured_space : old_space {
5         tenured_space(cell size, cell start) : old_space(size,start) {}
6
7         bool is_nursery_p() { return false; }
8         bool is_aging_p()   { return false; }
9         bool is_tenured_p() { return true; }
10 };
11
12 }