Files
haiku-beta6/src/system/kernel/cache/Jamfile
T
Axel Dörfler a96e7cce98 * Replaced my block allocator code in favour of Hugo's slab allocator
(so we can't allocate more physical pages than virtual address space
  anymore, but so what?).
* Used the new CACHE_LARGE_SLAB flag as a temporary work-around; else
  the slab would easily create several thousands of areas, which our
  area code (and kernel heap) can't really handle that well (gets 
  awfully slow).
* Block caches with the same size could share the same slab, but we
  don't do that yet.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23567 a95241bf-73f2-0310-859d-f6bbb57e9c96
2008-01-16 20:43:12 +00:00

11 lines
190 B
Plaintext

SubDir HAIKU_TOP src system kernel cache ;
KernelMergeObject kernel_cache.o :
block_cache.cpp
file_cache.cpp
file_map.cpp
vnode_store.cpp
: $(TARGET_KERNEL_PIC_CCFLAGS) -Wno-unused
;