Kottur has asked for the wisdom of the Perl Monks concerning the following question:

I have tried to call a function using threads using perl in my windows system.

But, during the execution, when i click the button to create a thread process, Microsoft error message is displayed as shown below,

"Perl Command Line Interpreter. Please tell Microsoft about this problem."

use threads; ##### Creation of a dialog box using Tkx Module ##### $Run = $MainFrame -> new_ttk__button( -text => TEXT, -width => 15, -command => sub { threads -> create({ "stack_size" => 64*4096, "exit" => "thread_only"}, \&CALLING_FUNCTION); } );

Replies are listed 'Best First'.
Re: How to Launch a function using threads in Perl
by Anonymous Monk on May 05, 2014 at 11:06 UTC