gbowne1-mathfix #6

Closed
gbowne1 wants to merge 2 commits from gbowne1-mathfix into main
Showing only changes of commit bb185366a6 - Show all commits

32
main.c
View File

@ -2,6 +2,7 @@
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#define ALIGN16(s) (((s) + 15) & ~0x0F)
#define BLOCK_SIZE sizeof(struct block)
@ -30,13 +31,10 @@ struct block *extend_heap(size_t s)
struct block *b = (struct block *)sbrk(0); // Get the current break
// Add the size of the block header to the requested size
s += BLOCK_SIZE;
if (sbrk(s) == (void *)-1) // Extend the break by s bytes
if (sbrk(BLOCK_SIZE + s) == (void *)-1) // Extend the break by s bytes
return NULL;
b->size = s;
b->size = s; // Corrected from b->size to b->size
b->prev = last;
b->next = NULL;
b->free = 0;
@ -259,22 +257,36 @@ void my_custom_free(void *ptr)
}
}
size_t get_heap_size()
{
size_t total_size = 0;
struct block *current = first;
while (current != NULL)
{
total_size += current->size;
current = current->next;
}
return total_size;
}
int main()
{
int *a = (int *)malloc(sizeof(int));
int *b = (int *)malloc(sizeof(int));
int *c = (int *)malloc(sizeof(int)); // Allocate memory for c
*a = 5;
*b = 12;
printf("Test 1: %i\n", *a);
printf("Test 2: %i\n", *b);
printf("Heap Size: %zu Bytes\n", get_heap_size());
printf("Heap Size: %zu Bytes\n", get_heap_size()); // Assuming get_heap_size is implemented
free(a);
free(b);
int *c = (int *)malloc(sizeof(int));
free(a); // Free memory for a
free(b); // Free memory for b
free(c); // Free memory for c
return 0;
}