Files
haiku-beta6/src/kernel/vm2/vmHeaderBlock.h
T
Michael Phipps ceb3763e56 Implemented the sharing of vnodes. Hopefully mmap and file cache and cloned
areas will not step on each others feet...
Added comments all over the place.
Bugs squished


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2248 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-12-15 07:05:38 +00:00

27 lines
418 B
C++

#ifndef _VM_HEADERBLOCK
#define _VM_HEADERBLOCK
#ifndef I_AM_VM_INTERFACE
class poolarea;
class poolvpage;
class poolvnode;
class pageManager;
class swapFileManager;
class cacheManager;
class vnodeManager;
#endif
struct vmHeaderBlock
{
poolarea *areaPool;
poolvpage *vpagePool;
poolvnode *vnodePool;
pageManager *pageMan;
swapFileManager *swapMan;
cacheManager *cacheMan;
vnodeManager *vnodeMan;
};
#endif