Skip to content

Instantly share code, notes, and snippets.

@aerodame
Created May 27, 2015 04:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aerodame/358cb8a9542098d2d8eb to your computer and use it in GitHub Desktop.
Save aerodame/358cb8a9542098d2d8eb to your computer and use it in GitHub Desktop.
Superblock
class Superblock {
public int totalBlocks; // the number of disk blocks
public int totalInodes; // the number of inodes
public int freeList; // the block number of the free list's head
public SuperBlock( int diskSize ) {
...
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment