Bitmap Module
Role in the System
The purpose of this module is to provide a mechanism by which disk sectors or memory pages can be tagged as being used or free. The files are bitmap.h and bitmap.cc. The bitmap is implemented as an array of unsigned integers, which are set to 0 or 1 whether the page is empty or full, respectively. This is done by the functions:
Uses Relation