I am having an issue with allocating the right size of memory in my program. I do the following:
void * ptr = sbrk(sizeof(void *)+sizeof(unsigned int));
When I do this, I think it is adding too much memory to the heap because it is allocating it in units of void* instead of bytes. How do I tell it that I want sizeof(whatever) to mean whatever bytes instead of whatever other units?
EDIT:
I have seen other people cast things as a char so that the compiler takes the size in bytes. If sizeof(unsigned int) is 4 bytes, but the type that I was using is void *, will the compiler break 4 times the size of a void * instead of 4 bytes?
sizeof(void*)here? What are you planning on doing with this memory? Also, any reason that you're not using plain-ol'mallochere? – templatetypedef Feb 13 at 21:14sbrk(), but rathermalloc(). – Kerrek SB Feb 13 at 21:15sizeofoperator returns the size in bytes. I don't understand what you're asking. Have you tried printing the resulting size to check if it's what you're expecting? – jweyrich Feb 13 at 21:18