From: Vincent Pit Date: Mon, 20 Jul 2015 22:33:23 +0000 (-0300) Subject: Harden spawned threads against stray exit X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=ba865c42d13de4c435b55379b0a32fe232053668;hp=ba865c42d13de4c435b55379b0a32fe232053668;p=perl%2Fmodules%2FVPIT-TestHelpers.git Harden spawned threads against stray exit The thread may call exit if malloc() fails at some point, which will cause the whole process to crash. We prevent this by passing 'exit => "threads_only"' to the threads.pm import method, which requires threads.pm version 1.37. ---