Bug 1806 - Singleton not cleanup by object manager (memory leak)
Summary: Singleton not cleanup by object manager (memory leak)
Status: ASSIGNED
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.4
Hardware: x86 Windows 2000
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 2004-05-06 15:07 CDT by Alain Dupont
Modified: 2004-07-19 12:25 CDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.