Added a pointer to the file_cache_ref to the vnode_store.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10437 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-12-13 22:47:41 +00:00
parent d316037c89
commit fcab2bafe0
2 changed files with 2 additions and 0 deletions

View File

@ -122,6 +122,7 @@ vm_create_vnode_store(void *vnode)
store->vm.committed_size = 0;
store->vnode = vnode;
store->file_cache_ref = NULL;
return &store->vm;
}

View File

@ -12,6 +12,7 @@
struct vnode_store {
vm_store vm;
void *vnode;
void *file_cache_ref;
};
#endif /* VNODE_STORE_H */