I finally solved the problem I had with my Perl script to test an OpenMosix cluster. The key was in the order of the arguments passed to the subroutine. This didn't work: Calculate($i,@s,$j);
but this worked: Calculate($i,$j,@s);
Could somebody explained my why? In the subroutine I assigned the parameters to private variable with: my($k,$NOS,@St)=@_;
How well, all is fine and dandy and I posted the code here for a review by the mailing list members.
8:50:21 PM comment [] - See Also: ProgrammingOpenMosix