vote up 0 vote down star
1

I have written a multi thread unmanaged application which uses COM objects in its worker threads. Everything went fine until I started using .NET objects exported as COM to do the work.

Playing around with the code and commenting out parts of the .NET object functionality I managed to pin it down to the usage of COM objects from within the .NET objects. To summarize:

  1. My program starts a couple of worker threads.
  2. Each worker thread initializes a .NET based COM object to do the work.
  3. The .NET based COM objects use unmanaged COM objects internally.

To my surprise the memory consumption of the application started climbing up steadily until OutOfMemory exception started to appear.

Here is my .NET implementation:

void DoSomeWork()
{
    IComObject O = new ComObjectClass();
    try
    {
        // do something
    }
    finally
    {
        Marshal.ReleaseComObject(O);
    }

}

If I comment out this function, the memory leaks disappear. If I call GC.Collect() in it the memory leak still happens.

Any ideas as to what may be going on?

EDIT: Some more info based on comments and answers:

  1. All threads created are running in the MTA.
  2. All COM objects implement IMarshal and use the Free Threaded Marshaler.
  3. It doesn't matter what do something is - even a int i=0;i++; generates the leak.
  4. The object noted by ComObjetClass is old and tested. This doesn't mean it's not faulty but is not something glaring.
  5. I tried repeatedly creating the COM object from a C# program, both on the main thread and with another created thread. In both cases the memory leak disappeared. It seems that the cross from unmanaged code to managed and the back again is essential. Removing any part of it results in the problem disappearing.
flag

61% accept rate
What is in // do something? Sometimes there are new objects created in the unmanaged code that you don't realize. – Grzenio Mar 13 at 10:09
There's a risk that in "do smth" you connect together a couple of COM objects and this causes a memory leak. Code would be useful to understand what's going on. – sharptooth Mar 13 at 10:15
Okay, what if the problem is really in the COM object class? Like it has wrong reference counting mechanism? What if you replace it with some other COM object? – sharptooth Mar 13 at 10:45
You can isolate this the following way: create a sample project in raw C++, in the main() function call CoCreateInstance() and IUnknown::Release() repeatedly, observe memory consumption. If the leak is reproducible this way, the problem is in the COM object. – sharptooth Mar 13 at 11:02

1 Answer

vote up 2 vote down

It could be that your COM wrapper objects need to switch to a STA thread to finalize. If your STA doesn't pump messages this will never happen and thus the finalize will never be called which in turn causes the memory leak.

There's more info in this KB.

link|flag

Your Answer

Get an OpenID
or

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