Quote:
Originally Posted by slavik262
The point is that I don't want to have a fixed number of my memory blocks
|
The thing is, you *do* have a fixed amount of memory, because of the limitations of the hardware. This isn't like the 4GB address space you're used to on a PC. I think you're far better off taking a static block of memory that is as big as you'll ever use, and build your data structure in there. It's not like you have to share your memory with other applications. I really can't think of anything that you could feasibly do with dynamic memory on the IFI controller that you couldn't also do with static memory, and it seems like you'd save yourself a huge pain in the process.