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

Replies are listed 'Best First'.
Re^3: perl threads in a recursive function
by Corion (Patriarch) on Aug 21, 2013 at 11:46 UTC

    Maybe read the answers to getting segmentation fault core dumped when I am running, which describe symptoms quite similar to yours and the approach to solve them.

    You don't show the (relevant) parts of Signal_ThreadCb. If you are mixing signals and threads, be advised that this is usually not well-supported by Perl and the underlying operating systems.