in reply to Win32 limit to number of calls to system()?
The underlying cause is a Perl internal use of a system call WaitForMultipleObjects() which is limited to waiting on 64 objects at any given time.
From what I remember, the limitation is 64 concurrent forks. Once one completes, you can initiate another.
I forget all details, but if you'd show the basic layout of your code, I'd probably remember what you need to do to alleviate the limit.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Win32 limit to number of calls to system()?
by Limbic~Region (Chancellor) on Sep 13, 2011 at 03:20 UTC | |
by ikegami (Patriarch) on Sep 13, 2011 at 04:09 UTC | |
by BrowserUk (Patriarch) on Sep 13, 2011 at 08:19 UTC | |
by Limbic~Region (Chancellor) on Sep 13, 2011 at 17:10 UTC |