Calls to an OLE Object Should Not Be Done from DllMain

ID: Q138812

The information in this article applies to:

SUMMARY

OLE operations involving calls to an OLE object should not be done in the DllMain function of a DLL because a deadlock can occur.

MORE INFORMATION

This is because these OLE operations can cause the creation of a background OLE thread (for RPC), and that background OLE thread needs to call into each DllMain in the process. However this thread cannot call the DllMain of the DLL that is doing the OLE operation because DllMain is not re-entrant. Consequently a deadlock occurs. This deadlock always occurs with Windows NT and under certain conditions with Windows 95.

The DLL should do these OLE operations in another function and should export this function so that the DLL client can call the function after the DLL is loaded.

Additional reference words: COM hang respond KBCategory: kbole kbprg KBSubcategory: LeTwoArc

Last Reviewed: October 31, 1995