2005-05-13 22:18:28 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2005, Axel Dörfler, axeld@pinc-software.de.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _KERNEL_BLOCK_CACHE_H
|
|
|
|
#define _KERNEL_BLOCK_CACHE_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern status_t block_cache_init(void);
|
2008-08-06 04:09:31 +04:00
|
|
|
extern size_t block_cache_used_memory();
|
2005-05-13 22:18:28 +04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-08-06 04:09:31 +04:00
|
|
|
#endif /* _KERNEL_BLOCK_CACHE_H */
|