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
27 lines
418 B
C++
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
|