Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^5: What is the correct way to finish multithreaded program?

by BrowserUk (Patriarch)
on May 05, 2014 at 15:49 UTC ( [id://1085086]=note: print w/replies, xml ) Need Help??


in reply to Re^4: What is the correct way to finish multithreaded program?
in thread What is the correct way to finish multithreaded program?

I'm pushing undef into the queue with ... and I think this will cause thread to return:

It will. Eventually. But there is no guarantee -- indeed it is most unlikely -- that all of the threads will: a) get a timeslice; b) receive the undef from the queue; c) act upon it and exit; before your main thread tries to join them.

The whole point of join is that it waits for the threads to finish, thus ensuring that your main thread doesn't exit before your child threads are finished.

It rarely makes any sense to turn it into a non-blocking operation by calling is_joinable before calling join.

The are a few specialist uses for that, but in the case of your code it only guarantees that any thread that is slow to finish will not get joined before you terminate the main thread; hence the error message.


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
  • Comment on Re^5: What is the correct way to finish multithreaded program?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1085086]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (2)
As of 2024-04-24 15:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found