haiku/src/system/kernel/cache/vnode_store.h

21 lines
338 B
C
Raw Normal View History

/*
* Copyright 2004-2007, Axel Dörfler, axeld@pinc-software.de.
* Distributed under the terms of the MIT License.
*/
#ifndef VNODE_STORE_H
#define VNODE_STORE_H
#include <vm_types.h>
struct vnode_store {
vm_store vm;
struct vnode* vnode;
dev_t device;
ino_t inode;
void* file_cache_ref;
};
#endif /* VNODE_STORE_H */