sofs19  0.1
FUSE based file system
grp_freelists.h
Go to the documentation of this file.
1 
14 #ifndef __SOFS19_FREELISTS_GROUP__
15 #define __SOFS19_FREELISTS_GROUP__
16 
17 #include <inttypes.h>
18 
19 namespace sofs19
20 {
21  uint32_t grpAllocInode(uint32_t type, uint32_t perm);
22 
23  void grpFreeInode(uint32_t in);
24 
25  uint32_t grpAllocDataBlock();
26 
27  void grpReplenishHeadCache();
28 
29  void grpFreeDataBlock(uint32_t cn);
30 
31  void grpDepleteTailCache();
32 };
33 
34 #endif /* __SOFS19_FREELISTS_GROUP__ */