X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=blobdiff_plain;f=src%2Ffilesys%2Ffilesys.h;h=c1cda84ecc324fbe70b4e9e3e729ed9ade89c24b;hp=a54a347e1c7c50fb1e826725b209759a5d7e9af5;hb=a03618133f7df0954802a470a4bee7674f7aed45;hpb=75c7a26063952e36238dd5f86774874719e47a0a diff --git a/src/filesys/filesys.h b/src/filesys/filesys.h index a54a347..c1cda84 100644 --- a/src/filesys/filesys.h +++ b/src/filesys/filesys.h @@ -1,20 +1,20 @@ -#ifndef HEADER_FILESYS_H -#define HEADER_FILESYS_H 1 +#ifndef FILESYS_FILESYS_H +#define FILESYS_FILESYS_H #include -#include -#include "off_t.h" +#include "filesys/off_t.h" -struct disk *filesys_disk; +/* Sectors of system file inodes. */ +#define FREE_MAP_SECTOR 0 /* Free map file inode sector. */ +#define ROOT_DIR_SECTOR 1 /* Root directory file inode sector. */ + +/* Block device that contains the file system. */ +struct block *fs_device; -struct file; void filesys_init (bool format); +void filesys_done (void); bool filesys_create (const char *name, off_t initial_size); -bool filesys_open (const char *name, struct file *); +struct file *filesys_open (const char *name); bool filesys_remove (const char *name); -bool filesys_list (void); -bool filesys_dump (void); - -void filesys_self_test (void); -#endif /* filesys.h */ +#endif /* filesys/filesys.h */