xref: /haiku/src/system/kernel/vm/VMNullCache.cpp (revision 37c7d5d83a2372a6971e383411d5bacbeef0ebdc)
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