Please report new issues athttps://github.com/DOCGroup
To support multiple reactors (we have one per priority) we also need multiple leader follower sets, but the leader follower set stores a condition variable in TSS storage (they need one per thread). There is a problem here because we could use condition variables with a mismatched lock (the lock for the condition variable is per-reactor). The reason why we use a condition variable in TSS is to amortize its creation time. It is probably as easy to use a pool of condition variables pre-allocated in the TAO_Leader_Follower class.
The ORB core team is in charge of this bug, but Fred is acting as pointman.
accepting the point
Marina and company have taken the leadership for the RT-CORBA stuff. It is possible that with the new standard interfaces this one bug has become obsolete, they know better, so I'm asking them to look at the bugs.
The new RT-CORBA code should address this.
Irfan will address this with his threadpool work.
Accepted
This one is going to be a critical problem, specially once the RT CORBA thread pools are implemented.
Moved it out of the vlocker list. As Irfan is implementing the resource-per- lane stuff for the post 1.2 timeframe, he would be addressing this issue only then.
The fixes for bug 886 include a fix for this problem. I'm adding a dependency to remind myself of closing this bug when I commit the 886 fixes.
The bug has been fixed, basically the condition variables are allocated from a free list kept on the Leader_Follower set, this guarantees that the right condition variable and mutex is used for each TAO_Leader_Follower class. Check the following ChangeLog entry for details: Wed Aug 1 16:05:36 2001 Carlos O'Ryan <coryan@uci.edu>