Re: Coding problem

2019-06-17 Thread Rhodri James
On 14/06/2019 10:32, INJAMUL HOQUE wrote: ...nothing. I'm afraid your email had no content when it reached us. If you included a screen shot, I'm afraid it was automatically removed before it reached us. -- Rhodri James *-* Kynesim Ltd -- https://mail.python.org/mailman/listinfo/python-list

Re: Coding problem

2019-06-17 Thread Igor Korot
On Mon, Jun 17, 2019 at 5:03 AM INJAMUL HOQUE wrote: > > Reading problem... > -- > https://mail.python.org/mailman/listinfo/python-list -- https://mail.python.org/mailman/listinfo/python-list

Re: Coding Problem (arbitrary thread sych)

2006-02-26 Thread peleme
Hi Kent, that's exactly the solution for my problem. Thanks a lot! Martin -- http://mail.python.org/mailman/listinfo/python-list

Re: Coding Problem (arbitrary thread sych)

2006-02-26 Thread Kent Johnson
peleme wrote: > The threads which arrives to the s function should wait for each other > until the last one. So A, B, and C executes the last function > 'together', while D executes it seperate. > I only know that three threads have to be in synch. Take a look at the Barrier patter in The Little B