Mercurial > hg > Members > menikon > CbC_xv6
comparison src/interface/fs.dg @ 247:1ba0ca4113e1
tweak
author | menikon |
---|---|
date | Sun, 02 Feb 2020 00:23:12 +0900 |
parents | 9ceb72e05468 |
children | f26b3dcbc6db |
comparison
equal
deleted
inserted
replaced
246:4cf83e6ce534 | 247:1ba0ca4113e1 |
---|---|
14 char* name; | 14 char* name; |
15 uint* poff; | 15 uint* poff; |
16 uint inum; | 16 uint inum; |
17 char* path; | 17 char* path; |
18 char* src; | 18 char* src; |
19 | 19 int namex_val; |
20 | 20 |
21 __code readsb(Impl* fs, uint dev, struct superblock* sb, __code next(...)); | 21 __code readsb(Impl* fs, uint dev, struct superblock* sb, __code next(...)); |
22 __code iinit(Impl* fs, __code next(...)); | 22 __code iinit(Impl* fs, __code next(...)); |
23 __code ialloc(Impl* fs, uint dev, short type, __code next(...)); | 23 __code ialloc(Impl* fs, uint dev, short type, __code next(...)); |
24 __code iupdate(Impl* fs, struct inode* ip, __code next(...)); | 24 __code iupdate(Impl* fs, struct inode* ip, __code next(...)); |
31 __code readi(Impl* fs, struct inode* ip, char* dst, uint off, uint n, __code next(...)); | 31 __code readi(Impl* fs, struct inode* ip, char* dst, uint off, uint n, __code next(...)); |
32 __code writei(Impl* fs, struct inode* ip, char* src, uint off, uint n, __code next(...)); | 32 __code writei(Impl* fs, struct inode* ip, char* src, uint off, uint n, __code next(...)); |
33 __code namecmp(Impl* fs, const char* s, const char* t, __code next(...)); | 33 __code namecmp(Impl* fs, const char* s, const char* t, __code next(...)); |
34 __code dirlookup(struct inode* dp, char* name, uint* poff, __code next(...)); | 34 __code dirlookup(struct inode* dp, char* name, uint* poff, __code next(...)); |
35 __code dirlink(Impl* fs, struct inode* dp, char* name, uint inum, __code next(...)); | 35 __code dirlink(Impl* fs, struct inode* dp, char* name, uint inum, __code next(...)); |
36 __code namei(Impl* fs, char* path, __code next(...)); | 36 __code namei(Impl* fs, char* path, __code next(int namex_val, ...)); |
37 __code nameiparent(Impl* fs, char* path, char* name, __code next(...)); | 37 __code nameiparent(Impl* fs, char* path, char* name, __code next(int namex_val, ...)); |
38 __code next(...); | 38 __code next(...); |
39 } fs; | 39 } fs; |