in reply to Re^9: perl -Dusethreads compilation
in thread perl -Dusethreads compilation

I have 2 files

1. Package wrapper for NET::FTP (error checking) 2. main code that creates threads and self master. <code> # File 1 package myFtp; use Net::FTP; use Net::Cmd; our @ftpObj; our @ftpList = (); our @code; sub Connect { my ($ftpServer, $ftpTimeout, $connection_type) = @_; #debug ("Trying -> ", $ftpServer); $ftpObj = Net::FTP->new($ftpServer, Timeout => $ftpTimeout, Passiv +e => $connection_type); return; } #other functions....
#File 2 (Main Code) use SPFtp qw(/^\$/); use SPFtp qw (Connect Login PrepareLsFtpList deleteFile GetFile GetFil +eSize Logout GetMessage CheckConnection); # Create Thread 1 Connect("bugs", "60", "binary"); # Create Thread 2 Connect("bugs", "60", "binary"); # Create Thread 3 Connect("bugs", "60", "binary"); # Create Thread 4 Connect("bugs", "60", "binary"); # Master Thread

Here is my question?

Will $ftpObj Variable get screwed up? I am pretty sure it will.

Replies are listed 'Best First'.
Re^11: perl -Dusethreads compilation
by BrowserUk (Patriarch) on Apr 05, 2010 at 22:37 UTC

    Hm. You declare our @ftpObj;; you then assign to $ftpObj = ...;; you post a 'trace', but don't show any code that produces that trace.

    Here is my question?

    Will $ftpObj Variable get screwed up? I am pretty sure it will.

    Then don't do that!

    Stop wasting my ....... time!

      I am sorry I don't want to waste your time..