Mercurial > hg > CbC > CbC_xv6
diff src/impl/fs_impl.cbc @ 338:2cbaa4c74d15
remove_skip
author | anatofuz |
---|---|
date | Sun, 16 Feb 2020 18:30:06 +0900 (2020-02-16) |
parents | cb6045bce1d5 |
children |
line wrap: on
line diff
--- a/src/impl/fs_impl.cbc Sat Feb 15 21:35:56 2020 +0900 +++ b/src/impl/fs_impl.cbc Sun Feb 16 18:30:06 2020 +0900 @@ -88,7 +88,7 @@ } typedef struct superblock superblock; -__code readsbfs_impl(struct fs_impl* fs, uint dev, struct superblock* sb, __code next(...)) { //:skip +__code readsbfs_impl(struct fs_impl* fs, uint dev, struct superblock* sb, __code next(...)) { struct buf* bp; @@ -184,7 +184,7 @@ } typedef struct stat stat; -__code statifs_impl(struct fs_impl* fs , struct inode* ip, struct stat* st, __code next(...)) { //:skip +__code statifs_impl(struct fs_impl* fs , struct inode* ip, struct stat* st, __code next(...)) { st->dev = ip->dev; st->ino = ip->inum; st->type = ip->type; @@ -234,7 +234,7 @@ goto next(strncmp_val, ...); } -__code dirlookupfs_impl(struct fs_impl* fs, struct inode* dp, char* name, uint off, uint* poff, dirent* de, __code next(...)) { //:skip +__code dirlookupfs_impl(struct fs_impl* fs, struct inode* dp, char* name, uint off, uint* poff, dirent* de, __code next(...)) { if (dp->type != T_DIR) { char* msg = "dirlookup not DIR"; struct Err* err = createKernelError(&proc->cbc_context); @@ -245,7 +245,7 @@ goto dirlookup_loopcheck(fs, dp, name, off, poff, de, next(...)); } -__code dirlinkfs_impl(struct fs_impl* fs, struct inode* ip, struct dirent* de, struct inode* dp, char* name, uint off, uint inum, __code next(...)) { //:skip +__code dirlinkfs_impl(struct fs_impl* fs, struct inode* ip, struct dirent* de, struct inode* dp, char* name, uint off, uint inum, __code next(...)) { // Check that name is not present. if ((ip = dirlookup(dp, name, 0)) != 0) { goto dirlink_namecheck(fs, ip, next(...));