Skip to content
This repository was archived by the owner on Jan 2, 2026. It is now read-only.

DereC4/memory-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MM-Lab Project for CS 429: Computer Organization and Architecture

The University of Texas at Austin
Instructor: Dr. Siddhartha Chatterjee

This project implements a custom dynamic storage allocator for C programs using my own versions of malloc and free. The allocator manages heap memory efficiently using explicit free lists, block splitting, and coalescing strategies to optimize both memory utilization and performance.

Note: This is not perfect; it was done for a university course to learn how memory management works.