Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^2: How can perl thread exit elegantly

by anaconda_wly (Scribe)
on Apr 23, 2013 at 06:14 UTC ( [id://1030044]=note: print w/replies, xml ) Need Help??


in reply to Re: How can perl thread exit elegantly
in thread How can perl thread exit elegantly

Thanks! Can we define signal of our own?
  • Comment on Re^2: How can perl thread exit elegantly

Replies are listed 'Best First'.
Re^3: How can perl thread exit elegantly
by BrowserUk (Patriarch) on Apr 23, 2013 at 08:03 UTC
    Can we define signal of our own?

    No. Signals and threading do not mix; and as you've found out, even the "threads signals" apparently intended for use with threads don't work for any reasonable definition of the term.

    For example, With SAFE_SIGNALS in force, a signal, even a kill, will not interrupt a join. (That's the first problem with the code you posted in your new thread.)

    And even if you worked your way around that; you'll end up having to poll in your threads and that's a nonsense.

    Far simpler to set a shared variable true in your main thread signal handler and have your threads poll on that.

    But simpler even than that is to just detach your threads -- either when you create them or when you receive the kill signal -- and then exit your main thread. The kids will then just go away silently without any polling or other special considerations, regardless of what they are doing at the time.


    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.
    .

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (3)
As of 2024-04-20 07:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found