🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

How to increase internal heap

Started by
5 comments, last by Songoq 22 years, 6 months ago
Hi. I have got 1 question How to increase internal heap in Microsoft visual c++ compilator?
Advertisement
keyword "delete"

You may be relying a little too much on dynamic memory allocation. It isn''t always the best way to go. Go back and take a look at your code. Are there places you could us standard arrays?
I really must increase internal heap, becouse my program will take 2* my current memory(or even more) (((((((
I really must increase internal heap, becouse my program will take 2* my current memory(or even more) (((((((
hack the C library. I''m not sure than MS'' is providing the source though.
I''m not sure I understand exactly what you''re asking. It sounds to me like you are asking for a way to create memory out of thin air. Unless I''m having a blond moment, that isn''t possible. You have to go buy more. Or like was said earlier, free up some of what you''ve used.
So do your own swapping to disk or let windows do the swapping for you.
Cold and Calculated

This topic is closed to new replies.

Advertisement