Article Listing 1 Listing 2 dec2006.tar

Listing 1 cpuhog.pl

#!/usr/bin/perl

print "eating the CPUs\n";

foreach $i (1..16) {
      $pid = fork();
      last if $pid == 0;
      print "created PID $pid\n";
}

while (1) {
      $x++;
}