Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl  -w
    
    ...
        print "Child thread ($$) - not dead yet...\n";
      } until 1 == 0;
    }
    
  2. or download this
    bio-man@saturn [dbupdate] ./ugly_forker
    Parent thread (17387) - not dead yet...
    ...
    uurk
    Killed
    bio-man@saturn [dbupdate]
    
  3. or download this
    #!/usr/local/bin/perl  -w
    use strict;
    ...
      } until $i == 3;
      die;
    }
    
  4. or download this
    bio-man@saturn [dbupdate] ./ugly_forker
    Parent thread (19689) - not dead yet...
    ...
    Parent thread (19689) - not dead yet...
    ^C
    bio-man@saturn [dbupdate]