GC.AddMemoryPressure
Posted
by Steve Sheldon
on Stack Overflow
See other posts from Stack Overflow
or by Steve Sheldon
Published on 2010-04-11T17:53:14Z
Indexed on
2010/04/11
19:13 UTC
Read the original article
Hit count: 510
I am writing an application in C# that makes use of a 3rd party COM DLL, this dll creates a lot of resources (like bitmaps, video, data structures) in unmanaged memory. While digging around I came across the following call for the Garbage Collector:
GC.AddMemoryPressure(long long bytesAllocated)
It is documented in MSDN here:
http://msdn.microsoft.com/en-us/library/system.gc.addmemorypressure.aspx
This sounds like something I should be calling since this external dll is createing a lot of resources the CLR is unaware of.
I guess I have two questions...
- How do I know how much memory pressure to add when the dll is 3rd party and it's not possible for me to know exactly how much memory this dll is allocating.
- How important is it to do this?
© Stack Overflow or respective owner