Bug 1806

Summary: Singleton not cleanup by object manager (memory leak)
Product: TAO Reporter: Alain Dupont <adupont>
Component: ORBAssignee: DOC Center Support List (internal) <tao-support>
Status: ASSIGNED ---    
Severity: normal    
Priority: P3    
Version: 1.4   
Hardware: x86   
OS: Windows 2000   

Description Alain Dupont 2004-05-06 15:07:19 CDT
The TAO_MESSAGING dll initialization creates the ACE_Object_Manager object 
before ace_os_main_i is called. When the application creates singleton objects 
the are added to the list of the ACE_Object_Manager object created by 
TAO_MESSAGING instead of the ACE_Object_Manager object created by 
ace_os_main_i. When the application exit, no singleton are deleted. 


Workaround:

Add these line before returning from main.

   ACE_OS_Object_Manager::instance()->fini();
   ACE_Object_Manager::instance()->fini();
Comment 1 Ossama Othman 2004-06-09 00:09:32 CDT
Similar/related issues are described in bug 1699.
Comment 2 Irfan Pyarali 2004-07-19 12:25:23 CDT
Accepted for tao-support.