Subj : Re: Unexplained race condition with POSIX threads To : comp.programming.threads,comp.sources.d From : Malte Starostik Date : Tue Mar 29 2005 01:56 am usenet@sta.samsung.com schrieb: > Greetings, > > Reproduced below is a ludicrously simple example of multi-threading > that uses the Active-Object design pattern. I have arrived at this > example by adapting the real problem that I am working on and stripping > all the unnecessary complexity from it. Fortunately (or unfortunately) > I am able to reproduce the problem even with this ridiculous example. > > list m_activationList; > // Activation list that queues up the > // incoming requests Forgot to mention, a std::queue seems more appropriate for this to me, but YMMV. Cheers, Malte .