http://qs1969.pair.com?node_id=782658

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

Hi, From a windows perl script, I am invoking a thread which runs the TERATERM macro utility in newly created thread. Problem is that the perl scrpt code below the thread creation is not getting executed. Creating thread as follows using available perl Thread module: my $ttThreadId = threads->create(\&invokeTeraTerm, <func_arg>); The thread code is working fine. But the code below the thread creation line in main file is not getting executed (Not even the print statement). Any suggestion / alternate opinion is welcomed. Thanks in advance Dave