Block a user
Moved Over To OOP to Abstract ELF Binary Generation
Moved Over To OOP to Abstract ELF Binary Generation
gbowne1 version of implementation with more implementations done
gbowne1 version of implementation with more implementations done
This is not an error. The changes of struct block* b = (struct block*)ptr - 1;
to struct block *b = (struct block *)((char *)ptr - BLOCK_SIZE);
adds more text to parse for the compiler and just looks ugly. Both do the same thing.
gbowne1 version of implementation with more implementations done
In my_custom_free
there's an error on line number 232 for the statement if (b == last)
. The last
global variable was not updated prior to that statement, which in turn the statement will…
gbowne1 version of implementation with more implementations done
In the find_best_fit
function on line number 111. There's a null pointer error. In the statement `if (!best_fit
gbowne1 version of implementation with more implementations done
There's an additional ALIGN16
macro function call in fragment_block
function which is unnecessary.