diff options
author | Austin Clements <[email protected]> | 2011-09-02 15:35:34 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2011-09-02 15:35:34 -0400 |
commit | e76dab4fd7c30dd97260a554880ad8728fdc1b33 (patch) | |
tree | f7ea659bbb206c2097d12a0fdfb765b7ab7e5c57 | |
parent | 7d9ee3b833aed336e14a42599b63648317a71845 (diff) | |
download | xv6-labs-e76dab4fd7c30dd97260a554880ad8728fdc1b33.tar.gz xv6-labs-e76dab4fd7c30dd97260a554880ad8728fdc1b33.tar.bz2 xv6-labs-e76dab4fd7c30dd97260a554880ad8728fdc1b33.zip |
Put filewrite in its own column
-rw-r--r-- | file.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -107,6 +107,7 @@ fileread(struct file *f, char *addr, int n) panic("fileread"); } +//PAGEBREAK! // Write to file f. Addr is kernel address. int filewrite(struct file *f, char *addr, int n) |