xref: /haiku/src/system/kernel/vm/VMNullCache.h (revision 35ead8815b679605a9b4db8130613ea100f4b14c)
1 /*
2  * Copyright 2008-2010, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Copyright 2005-2007, Axel Dörfler, axeld@pinc-software.de.
4  * Distributed under the terms of the MIT License.
5  *
6  * Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
7  * Distributed under the terms of the NewOS License.
8  */
9 #ifndef _KERNEL_VM_STORE_NULL_H
10 #define _KERNEL_VM_STORE_NULL_H
11 
12 
13 #include <vm/VMCache.h>
14 
15 
16 class VMNullCache : public VMCache {
17 public:
18 			status_t			Init(uint32 allocationFlags);
19 
20 	virtual	status_t			Fault(struct VMAddressSpace* addressSpace,
21 									off_t offset);
22 };
23 
24 
25 #endif	/* _KERNEL_VM_STORE_NULL_H */
26