Package nachos.kernel.filesys

Interface Summary
OpenFile Interface that provides read/write access to files in a filesystem.
 

Class Summary
BitMap This class defines a "bitmap" -- an array of bits, each of which can be independently set, cleared, and tested.
Directory This class class defines a UNIX-like "directory".
DirectoryEntry This class defines a "directory entry", representing a file in the directory.
FileHeader This class defines the Nachos "file header" (in UNIX terms, the "i-node"), describing where on disk to find all of the data in the file.
FileSystem This abstract class defines the interface to a Nachos file system.
FileSystemReal This class manages the overall operation of the file system.
FileSystemStub This "filesystem stub" class implements a Nachos filesystem by simply passing the filesystem operations through to the native filesystem on the host platform.
Message Class for messages representing a request to or a reply from a distributed filesystem (DFS) server.
OpenFileReal This is a class for managing an open Nachos file.
OpenFileStub This "stub" class implements file operations for Nachos by simply passing the filesystem operations through to the native filesystem on the host platform.