in reply to Re: Re: $threads->join() only returns one argument??? BUG?
in thread $threads->join() only returns one argument??? BUG?

I missed that bit. Truth is I've never read perlthrtut beyond the first couple of paras because it seemed to be dealing with threads at a very general level which I'm already reasonably comfortable with. It also goes into way to much detail about all the different flavours of threads which perl doesn't use for my taste.

There definitely seem to be a few bugs still in the 5.8 implementation. Much of it deriving from the inherently non-reentrant nature of the perl core from what I can work out. There's also a lack of good sample code right now.


Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"When I'm working on a problem, I never think about beauty. I think only how to solve the problem. But when I have finished, if the solution is not beautiful, I know it is wrong." -Richard Buckminster Fuller


  • Comment on Re: Re: Re: $threads->join() only returns one argument??? BUG?

Replies are listed 'Best First'.
Re: Re: Re: Re: $threads->join() only returns one argument??? BUG?
by JamesNC (Chaplain) on Jun 12, 2003 at 03:00 UTC
    I got stuck on this too when a while back and got help from the other Monks... perhaps this node will be helpful to you...Node: 231527
    This post shows a mult-threaded PING and uses shared variables between the threads.
    James