http://www.perlmonks.org?node_id=1050332


in reply to Re: perl threads in a recursive function
in thread perl threads in a recursive function

package hi; sub fn { my $thread_signal = threads->create(\&Signal_ThreadCb,@_); push @main::threads_pool,$thread_signal; } package main; hi::fn(); hi::fn(); hi::fn();
At the thread creation point error is occuring ;Segmentation fault core dumped