I was just wondering how you could create a system memory leak using C++. I have done some googling on this but not much came up, I am aware that it is not really feasible to do it in C# as it is managed code but wondered if there was a simple way to do this with C++? I just thought it would be interesting to see how much the system suffers because of code not being written properly. Thanks.
|
|
A memory leak occurs when you call
|
|||||||
|
|
|||||
|
|
|||||||||||||||||||
|
|
I found this article useful for stress testing - it comes with code examples too. |
|||
|
There are many kinds of memory leaks:
|
||||
|
|
|
In C#, just use P/Invoke to allocate a lot of memory, resource handles and keep them around. You can use unmanaged code just fine in a simple C# harness |
|||
|
|
Just write an application which allocates "a lot of data" and then blocks until it is killed. Just run this program and leave it running. |
|||||||||
|
note : the hashed line of code caused a memory leak while the process allocated it and did't return it back to the OS |
|||
|
|