xref: /haiku/src/system/kernel/vm/VMNullCache.cpp (revision 508f54795f39c3e7552d87c95aae9dd8ec6f505b)
1 /*
2  * Copyright 2008-2010, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include "VMNullCache.h"
8 
9 
10 status_t
11 VMNullCache::Init(uint32 allocationFlags)
12 {
13 	return VMCache::Init(CACHE_TYPE_NULL, allocationFlags);
14 }
15