memory testing and robustness

This commit is contained in:
Liam Kerr 2026-02-09 03:28:54 +00:00
parent 2296179bf8
commit 9f833ca32c
4 changed files with 95 additions and 9 deletions

View file

@ -22,5 +22,8 @@ void *kmalloc(size_t size);
void kfree(void *ptr);
void kcoalesce(HeapHeader *header);
void test_memory_integrity();
void test_memory_alignment();
void test_memory_stress();
void heap_stats();
#endif