in reply to Perl threads - parallel run not working
File::Find isn't threadsafe.
From the source code:
# Should ideally be my() not our() but local() currently # refuses to operate on lexicals our %SLnkSeen; our ($wanted_callback, $avoid_nlink, $bydepth, $no_chdir, $follow, $follow_skip, $full_check, $untaint, $untaint_skip, $untaint_pat, $pre_process, $post_process, $dangling_symlinks);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl threads - parallel run not working
by dave_the_m (Monsignor) on Sep 15, 2015 at 21:25 UTC | |
by BrowserUk (Patriarch) on Sep 15, 2015 at 23:26 UTC | |
by aaron.schweitzer (Novice) on Sep 16, 2015 at 05:52 UTC |