aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Initial implementation of free list functionsDouglas B. Rumbaugh3 days1-5/+42
| | | | | Implemented (but haven't tested) adding nodes to the free list and coalescing them.
* Updated free list interfaceDouglas B. Rumbaugh3 days3-11/+39
| | | | | | | | | | I realized my existing interface wouldn't work if the coalescing or adding of a new node replaced the head of the list, as there was no way to communicate that back to the caller. As a result, I've updated those interfaces to accept a pointer to the free list head pointer. This will let them change the free list head in alloc.c if necessary.
* Added debug flags to MakefileDouglas B. Rumbaugh3 days1-3/+5
|
* Removed debug print statementDouglas B. Rumbaugh3 days1-2/+0
|
* Intial commit: No free list management yetDouglas B. Rumbaugh3 days10-0/+390