Bug 571

Summary: Need to check DII calls, especially deferred synchronous calls, for thread safety.
Product: TAO Reporter: Jeff Parsons <parsons>
Component: ORBAssignee: DOC Center Support List (internal) <tao-support>
Status: ASSIGNED ---    
Severity: trivial    
Priority: P5    
Version: 1.1.1   
Hardware: All   
OS: All   

Description Jeff Parsons 2000-05-18 21:11:56 CDT
A DII Request object may be used only once - more than one call per object produces "undefined behavior" according to the spec. But if more than
one thread manages to get hold of the same Request object reference, there could be trouble. Where this seems more likely to happen would be
in a deferred synchronous DII call, then the reply may be handled by a different thread than the one that made the request. It's not a pressing issue,
but it should be sanity-checked one day.
Comment 1 Jeff Parsons 2000-05-18 21:12:14 CDT
Yep.