nckernel  0.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
fat_cache.h
Go to the documentation of this file.
1 struct fat_cache;
2 
3 extern struct fat_cache *create_fat_cache(const char *node, int size);
4 extern void destroy_fat_cache(struct fat_cache *cache);
5 extern int update_fat_cache(struct fat_cache *cache, off_t offset);
6 extern void *fat_cache(struct fat_cache *cache);
7 extern int fat_cache_size(struct fat_cache *cache);
8 extern void fat_cache_lock(struct fat_cache *cache);
9 extern void fat_cache_unlock(struct fat_cache *cache);
10 
11 /* End of a file */