diff options
author | kaashoek <kaashoek> | 2006-08-15 15:53:46 +0000 |
---|---|---|
committer | kaashoek <kaashoek> | 2006-08-15 15:53:46 +0000 |
commit | e958c538fa1e711479f09cab807a6a7cde5d8aeb (patch) | |
tree | 05b193a535691e31dd936954e4e824b7de700206 /defs.h | |
parent | d7b3b802f414dbf18b5e196ab1a342b19d5f7be8 (diff) | |
download | xv6-labs-e958c538fa1e711479f09cab807a6a7cde5d8aeb.tar.gz xv6-labs-e958c538fa1e711479f09cab807a6a7cde5d8aeb.tar.bz2 xv6-labs-e958c538fa1e711479f09cab807a6a7cde5d8aeb.zip |
commented out code for cwd
Diffstat (limited to 'defs.h')
-rw-r--r-- | defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -110,11 +110,13 @@ void bwrite(struct buf *, uint); void brelse(struct buf *); // fs.c +extern uint rootdev; void iinit(void); struct inode * iget(uint dev, uint inum); void ilock(struct inode *ip); void iunlock(struct inode *ip); void idecref(struct inode *ip); +void iincref(struct inode *ip); void iput(struct inode *ip); struct inode * namei(char *path, int, uint *); void stati(struct inode *ip, struct stat *st); |