vote up 2 vote down star
1

Hi,

My Windows/C++ application allocates ~1Gb of data in memory with the new operator and processes this data. The data is deleted after processing.

I noticed that if I run the processing again without exiting the application, the second call to "new" operator to allocate ~1gb of data fails.

I would expect Windows to deliver back the memory again. Could this be managed in a better way with some other win32 calls etc. ?

Thanks,

Paul

flag

67% accept rate

4 Answers

vote up 1 vote down

Since you are using very large memory blocks, you should consider using VirtualAlloc() and VirtualFree(), as they allow you to allocate and free pages directly, without the overhead (in memory and time) of interacting with a heap manager.

Since you are using C++, it is worth noting that you can construct C++ objects in the memory you allocate this way by using placement new.

link|flag
vote up 3 vote down

In most runtime environments memory allocated to an application from the operating system remains in the application, and is seldom returned back to the operating system. Freeing a memory block allows you to reuse the block from within the application, but does not free it to the operating system to make it available to other applications.

Microsoft's C runtime library tries to return memory back to the operating system by having _heapmin_region call _heap_free_region or _free_partial_region which call VirtualFree to release data to the operating system. However, if whole pages in the corresponding region are not empty, then they will not be freed. A common cause of this is the bookkeeping information and storage caching of C++ containers.

link|flag
This might be the case for Java, but is certainly not the case for Windows standard C/C++ libraries, at least not for anything larger than a memory page. Give it a try and see it yourself. – DrJokepu Dec 15 '08 at 12:11
You're right. I've edited the answer to describe how Microsoft C handles deallocation. – Diomidis Spinellis Dec 15 '08 at 12:24
vote up 3 vote down

This could be due to memory fragmentation (in reality, address space fragmentation), where various factors have contributed to your program address space not having a 1gb contiguous hole available. In reality, I suspect a bug in your memory management (sorry) - have you run your code through leak detection?

link|flag
I have made sure that each new'ed pointer is delete'd as well. My debug print logs show this at least. Are there any tools within VS2003 or standalone to help me look for leaks ? – Paul Baumer Dec 15 '08 at 12:04
Have a read of msdn.microsoft.com/en-us/library/… , which might help. You should also check that any objects you're new'ing that allocate resources must deallocate in their destructors, and that any new[] is matched with delete[]. – Adam Wright Dec 15 '08 at 12:18
I was thinking that delete[] is obsolete and delete is sufficient. – Paul Baumer Dec 15 '08 at 12:21
delete[] is required whenever you use new[] to allocate data. – eJames Dec 15 '08 at 12:25
Yes, not using delete[] is most likely to be your problem. I should have made that more clear in my answer, I guess. – schnaader Dec 15 '08 at 13:31
show 2 more comments
vote up 6 vote down

I don't think this is a Windows problem. Check if you used delete or delete[] correctly. Perhaps it would help if you post the code that is allocating/freeing the memory.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.