We have a .NET application which our customers consider too large for mass deployment and we would like to understand what contributes to our memory footprint and is it possible to do any better witho
is it possible to list all objects stored in heap. I would like to do something like this: 开发者_JS百科IEnumerable<GCHandle> listOfObjectsInHeap = GetListOfObjectsFromHeap();
Is there anything wrong with the optimization 开发者_如何学JAVAof overloading the global operator new to round up all allocations to the next power of two? Theoretically, this would lower fragmentatio
We have an open beta of an app which occasionally causes the heapspace to overflow. The JVM reacts by going on a permanent vacation.
I want to calculate the heap usage for my app. I would like to get a procent value of Heap size only.
I have a really long collection with 10k items, and when running a toString() on the object it crashes. I need to use this output somehow.
How can I tell if the MFC CString allocates memory on the heap or stack?I am compiling for the Windows Mobile/Windows CE platform.
I get a crash like this: #00x2c58def0 in raise () from /lib/libpthread.so.0 #10x2d9b8958 in abort () from /lib/libc.so.0
This is a follow-up to Critique my heap debugger from yesterday. As suggested by bitc, I now keep metadata about the allocated blocks in a separate handwritten hashtable.
Language : C++ Platform : Windows Server 2003 I have an exe calling a DLL. EDIT : (exe is not doing anything, it calls few global function which does everything related to DLL within DLL. It does