in reply to Win32 limit to number of calls to system()?

It appears there is a limit on the number of children perl can have under windows:

http://code.activestate.com/lists/perl-win32-users/12064

However that thread says the limit only applies to concurrent threads that perl can wait on. Perhaps your code is creating child processes to convert each PDF, and then not waiting on each process, but is leaving zombies.

  • Comment on Re: Win32 limit to number of calls to system()?