Upon initialization, GDI+ (non .NET) creates a background thread, which can optionally be suppressed subject to calling some hook functions. MSDN, however, doesn't say what this thread actually does. Google doesn't seem to know either.

What is it for?

link|improve this question

2  
How is this off-topic? I really wish you could vote against closing. – Marcelo Cantos Apr 29 '10 at 11:53
feedback

1 Answer

up vote 3 down vote accepted

This thread provides a general explanation:

GDI+ spins up a background thread as soon as you start manipulating images. It's name doesn't provide much of a hint what it does, "BackgroundThreadProc()". This is pretty common in Microsoft libraries. Some sort of internal management thread, probably has something to do with memory management or threading. It creates a hidden window, that's classic too.

Nothing to worry about, everything is normal. Including the exit code.

FWIW, this thread recommends suppressing the background thread:

If you do not suppress the background GDI+ thread, DDE commands can be prematurely issued to the application before its main window has been created. The DDE commands issued by the shell can be prematurely aborted, resulting in error messages.

link|improve this answer
That information about the failures seems rather old now. Has this not been fixed by Microsoft by now? – wilx Mar 27 at 8:27
feedback

Your Answer

 
or
required, but never shown

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