https://github.com/beastwick18/arena-allocator-assignment
https://github.com/beastwick18/arena-allocator-assignment
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/beastwick18/arena-allocator-assignment
- Owner: Beastwick18
- License: mit
- Created: 2022-10-28T05:22:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-14T00:26:49.000Z (over 3 years ago)
- Last Synced: 2025-03-13T07:14:01.343Z (over 1 year ago)
- Language: C
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Arena-Allocator-Assignment
- This is my arena allocator assignment for my Operating Systems class (CSE3320)
- The makefile produces 6 executables:
- unit_test
- benchmark1
- benchmark2
- benchmark3
- benchmark4
- benchmark5
- unit_test runs a series of tests on the allocator to make sure it runs properly
- benchmark1-benchmark4 test each different allocation method. Allocation methods are as follows:
- `NEXT_FIT`
- `BEST_FIT`
- `FIRST_FIT`
- `WORST_FIT`
- benchmark5 tests the same code but using malloc instead of the arena allocator
- Each benchmark outputs an integer representing the time in milliseconds that the program took to execute