1/*
2 * Copyright 2008-2011, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include "VMNullCache.h"
8
9#include <slab/Slab.h>
10
11
12status_t
13VMNullCache::Init(uint32 allocationFlags)
14{
15	return VMCache::Init(CACHE_TYPE_NULL, allocationFlags);
16}
17
18
19void
20VMNullCache::DeleteObject()
21{
22	object_cache_delete(gNullCacheObjectCache, this);
23}
24
25