in reply to How can perl thread exit elegantly
I want to issue an event from catch_CtrlC to every running threads to exit elegantly(release resources before exit). How to realise this in the threads?
It depends what those threads are doing and what resources they need to release?
There are several approaches to the problem, and which is appropriate is dependent upon the code in question, so post your code.
The one approach I cannot recommend at all, is using the Threads signalling mechanism which is entirely redundant.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How can perl thread exit elegantly
by anaconda_wly (Scribe) on Apr 23, 2013 at 06:14 UTC | |
by BrowserUk (Patriarch) on Apr 23, 2013 at 08:03 UTC |