Topic: Memory Leakage
Not finding your answer? Try searching the web for Memory Leakage
Answers to Common Questions
What is memory leakage in C?
When you are using pointers and you don't free memory after you stoped using it, you loose certain amount of memory, which you cannot use and system cannot use either because it was reserved. When you work with huge amounts of memory like a... Read More »
Source: http://wiki.answers.com/Q/What_is_memory_leakage_in_C
What is memory leakage in terms of arrays?
leakage in arrays occur when you declare an array with big size and using only very few bytes. Read More »
Source: http://wiki.answers.com/Q/What_is_memory_leakage_in_terms_of_arra...
How to detect Memory leakage?
Have a look at the excellent memproof software: http://www.automatedqa.com/downloads/memproof.asp There are some hints on using memproof here: http://users.pandora.be/stefancr/Delphi%20-%20MemProof.htm Regards, Steven Read More »
Source: http://www.experts-exchange.com/Programming/Languages/Pascal/Delp...
Featured Content:
Memory Leakage
More Common Questions
Answers to Other Common Questions
Hi Vasu, As many of the experts have already explained memory leak,put simply, is allocating memory on the heap(*alloc) and not freeing it at apporpriate places when it is no more needed. When such a program runs for weeks and months on a s...
Read More »
Source: http://www.experts-exchange.com/Q_20947701.htm
Java has a fairly sophisticated garbage collection system, and in general you don't worry about memory leaks, as they only happen in a few very specific circumstances (notably, when adding listeners to Swing GUI objects and not removing the...
Read More »
Source: http://wiki.answers.com/Q/How_do_you_handle_memory_leakage_in_jav...
A lot of ram, a 3GHz processor, a good graphic card... and is not enough. The bottleneck is the disk: get a Western Digital RAPTOR or better two and combine them in RAID and you'll have the speed you need.
Read More »
Source: http://answers.yahoo.com/question/index?qid=20070110173126AA3g7fS
Obviously, the only way to avoid the leak is to eventually delete all the memory you allocate. Not very helpful I realize. But it brings you to the real question..."How do I insure that everything I allocate is deleted" The answer to that...
Read More »
Source: http://www.experts-exchange.com/Programming/Languages/CPP/Q_11655...
Hi, Because of the following reasons memory leak will be there. 1. malloc/calloc 2. File Opening - Not closed 3. Socket -Opening - Not closed 4. Thread - Opening - Not closed. For list of tools you can search in google.
Read More »
Source: http://www.experts-exchange.com/Q_21499424.htm
If you are using C#, there isn't any memory leaks. There is a garbage collector that will de-allocate all your unused object,variables, structs... What you are most likely seeing is just the growing/shrinking of your data that you are usin...
Read More »
Source: http://www.experts-exchange.com/Q_21084680.htm