Summary: | Memory leak associated with set_policy_overrides call | ||
---|---|---|---|
Product: | TAO | Reporter: | Rob <rruff> |
Component: | ORB | Assignee: | DOC Center Support List (internal) <tao-support> |
Status: | NEW --- | ||
Severity: | normal | ||
Priority: | P3 | ||
Version: | 1.2.1 | ||
Hardware: | x86 | ||
OS: | Windows 2000 |
Description
Rob
2002-04-16 07:25:36 CDT
Reassign to myself. Mine. Rob, can you tell me where BoundsChecker reports the leak? I want to make sure I got the leak you're reporting. My BoundsChecker installation is currently broken due to an upgrade to XP, and I haven't received my new copy of BoundsChecker yet. The following is Rob's stack trace: TAO_Sync_Scope_Policy::copy() .\Messaging_Policy_i.cpp 285 TAO_Policy_Set::set_policy() .\Policy_Set.cpp 191 TAO_Policy_Set::set_policy_overrides() .\Policy_Set.cpp 176 TAO_Stub::set_policy_overrides() .\Stub.cpp 488 CORBA_Object::_set_policy_overrides() .\Object.cpp 432 Client::setPolicyOverrides() C:\client_main.cpp 30 Thanks Rob! Rob, I'm going to need a different stack trace. In particular, BoundsChecker should show a stack trace that shows exactly where the leak occurred during the oneway invocation. The stack trace you gave me is for the code you execute prior to your oneway invocation. (Respond via the bugzilla interface on the web, not via e-mail. Otherwise I won't get the response.) BoundsChecker is only giving me the location of the memory leak. It doesn't refer to the oneway call at all. The bottom line in the trace I sent is referring to this operation: CORBA::Policy_ptr TAO_Sync_Scope_Policy::copy (CORBA_Environment &ACE_TRY_ENV) ACE_THROW_SPEC ((CORBA::SystemException)) { TAO_Sync_Scope_Policy *servant = 0; ACE_NEW_THROW_EX (servant, TAO_Sync_Scope_Policy (*this), CORBA::NO_MEMORY ()); ACE_CHECK_RETURN (CORBA::Policy::_nil ()); return servant; } The ACE_NEW_THROW_EX line is being flagged so I assume it is saying that the "servant" created here is being leaked. It's possible that this might be a false-positive on BoundsChecker's part. I can't see how the copy() method leaks since nothing occurs after the allocation. The return value of the copy() method is stored in a Policy_var, after which proper memory management appears to occur. The code in question is independent of whether or not the invocation is a twoway or a oneway, which is what leads me to believe that if there is a leak for oneways it must be in the oneway critical path. I'll try to run your code with Purify on Solaris to see if I get leaks for oneway invocations. Out of curiosity, what happens if you change your client loops to: JCAFCore::Listener_var ref = client.setPolicyOverrides(listener.in()); // There is no leak that shows up 77 times. for (int i=0; i<77; i++) { ref->update(); } // There is a memory leak on set_policy_overrides that shows up 99 times. for (int i=0; i<99; i++) { ref->update1way(); } Presumably you should still get leaks. I forgot to mention that. The reason I put the set_policy_overrides call in the loops is so it was obvious when there was a leak since it happened so many times. If you move the call outside the loop, there is only a single memory leak. |