view final_main/src/fs_impl1.h @ 17:c8fee0262ead

fix chapter5
author menikon
date Thu, 13 Feb 2020 01:50:45 +0900
parents b67e4c9f0374
children
line wrap: on
line source

typedef struct fs_impl<Type, Isa> impl fs{
    __code allocinode(Type* fs_impl, uint dev, struct superblock* sb, __code next(...));
    __code allocinode_loop(Type* fs_impl, uint inum, uint dev, short type, struct superblock* sb, struct buf* bp, struct dinode* dip, __code next(...));
    __code allocinode_loopcheck(Type* fs_impl, uint inum, uint dev, struct superblock* sb, struct buf* bp, struct dinode* dip, __code next(...));
    __code allocinode_noloop(Type* fs_impl, uint inum, uint dev, short type, struct superblock* sb, struct buf* bp, struct dinode* dip, __code next(int ret, ...));
  
....

} fs_impl;