Perl and Threads

2004-10-11 Thread Eduardo Vázquez Rodríguez
Hello Im writing perl scripts that use threads. Mi goal is that each thread could process an element of an array that has 10 elements, so thread0 process array[0], thread1 process array[1] and so on until thread9 process array[9] Those 10 lines come from a file that Perl reads in chunks of ten l

Re: Perl and Threads

2004-10-12 Thread Dave Gray
> Mi goal is that each thread could process an element of an array that > has 10 elements, so thread0 process array[0], thread1 process array[1] > and so on until thread9 process array[9] > > Those 10 lines come from a file that Perl reads in chunks of ten lines > until EOF First of all, your cod