Mercurial > hg > CbC > CbC_xv6
comparison src/impl/fs_impl.h @ 331:e64c8734a802
tweak fs_impl arguments
author | anatofuz |
---|---|
date | Sun, 09 Feb 2020 19:18:42 +0900 |
parents | e34fb61f280a |
children | 37a3a8661f8a |
comparison
equal
deleted
inserted
replaced
330:e34fb61f280a | 331:e64c8734a802 |
---|---|
14 __code readi_noloop(Type* fs_impl, uint n, __code next(int ret, ...)); | 14 __code readi_noloop(Type* fs_impl, uint n, __code next(int ret, ...)); |
15 __code writei_check_diskinode(Type* fs_impl,struct inode* ip, char* src, uint n, __code next(int ret, ...)); | 15 __code writei_check_diskinode(Type* fs_impl,struct inode* ip, char* src, uint n, __code next(int ret, ...)); |
16 __code writei_loopcheck(Type* fs_impl, uint tot, uint m, char* src, uint off, uint n, __code next(...)); | 16 __code writei_loopcheck(Type* fs_impl, uint tot, uint m, char* src, uint off, uint n, __code next(...)); |
17 __code writei_loop(Type* fs_impl, struct inode* ip, struct buf* bp, uint tot, uint m, char* src, uint off, uint n, __code next(...)); | 17 __code writei_loop(Type* fs_impl, struct inode* ip, struct buf* bp, uint tot, uint m, char* src, uint off, uint n, __code next(...)); |
18 __code writei_noloop(Type* fs_impl, struct inode* ip, uint n, uint off, __code next(int ret, ...)); | 18 __code writei_noloop(Type* fs_impl, struct inode* ip, uint n, uint off, __code next(int ret, ...)); |
19 __code dirlookup_loopcheck(Type* fs_impl, struct inode* dp, char* name, uint off, uint* poff, dirent* de, __code next(...)); | 19 __code dirlookup_loopcheck(Type* fs_impl, struct inode* dp, char* name, uint off, uint* poff, struct dirent* de, __code next(...)); |
20 __code dirlookup_loop(Type* fs_impl, struct inode* dp, char* name, uint off, uint inum, uint* poff, dirent* de, __code next(int ret, ...)); | 20 __code dirlookup_loop(Type* fs_impl, struct inode* dp, char* name, uint off, uint inum, uint* poff, struct dirent* de, __code next(int ret, ...)); |
21 __code dirlookup_noloop(Type* fs_impl, __code next(int ret, ...)); | 21 __code dirlookup_noloop(Type* fs_impl, __code next(int ret, ...)); |
22 __code dirlink_namecheck(Type* fs_impl, struct inode* ip, __code next(int ret, ...)); | 22 __code dirlink_namecheck(Type* fs_impl, struct inode* ip, __code next(int ret, ...)); |
23 __code dirlink_loopcheck(Type* fs_impl, struct dirent* de, struct inode* dp, uint off, __code next(...)); | 23 __code dirlink_loopcheck(Type* fs_impl, struct dirent* de, struct inode* dp, uint off, __code next(...)); |
24 __code dirlink_loop(Type* fs_impl, struct dirent* de, struct inode* dp, uint off, uint inum, __code next(...)); | 24 __code dirlink_loop(Type* fs_impl, struct dirent* de, struct inode* dp, uint off, uint inum, __code next(...)); |
25 __code dirlink_noloop(Type* fs_impl, struct dirent* de, struct inode* dp, uint off, uint inum, char* name, __code next(int ret, ...)); | 25 __code dirlink_noloop(Type* fs_impl, struct dirent* de, struct inode* dp, uint off, uint inum, char* name, __code next(int ret, ...)); |