in reply to Re^2: Monitoring child threads
in thread Monitoring child threads
The typical way of handling crashing code it to wrap it in a block eval:
sub thread { eval{ ## code } or ##handle error. }
If you can trap the error, you can then pretty much do anything that you need to do.
|
|---|