diff options
author | kaashoek <kaashoek> | 2006-08-10 01:28:57 +0000 |
---|---|---|
committer | kaashoek <kaashoek> | 2006-08-10 01:28:57 +0000 |
commit | 28d9ef04ddaa4cf32f3c63c976afdc535a36db98 (patch) | |
tree | 3ffd0e079e8fd5dab4e00a37fb657087ed7da720 /defs.h | |
parent | 939f9edeac042b2678bd2943a32822fb2eed75b4 (diff) | |
download | xv6-labs-28d9ef04ddaa4cf32f3c63c976afdc535a36db98.tar.gz xv6-labs-28d9ef04ddaa4cf32f3c63c976afdc535a36db98.tar.bz2 xv6-labs-28d9ef04ddaa4cf32f3c63c976afdc535a36db98.zip |
printf
convert userfs to use printf
bfree
ifree
writei
start on unlink
Diffstat (limited to 'defs.h')
-rw-r--r-- | defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -109,5 +109,5 @@ void idecref(struct inode *ip); void iput(struct inode *ip); struct inode * namei(char *path); int readi(struct inode *ip, void *xdst, uint off, uint n); -int writei(struct inode *ip, void *addr, uint n); +int writei(struct inode *ip, void *addr, uint off, uint n); struct inode *mknod(struct inode *, char *, short, short, short); |