Help for this page

Select Code to Download


  1. or download this
    Module1 
    Use threads;
    ...
       my $mod2 = Module2->new()
       $mod->fork_it()
    }
    
  2. or download this
    Module2
    Use forks;
    ...
    {
       code that runs forks here
    }
    
  3. or download this
    my $mod1 = Module1->new()
    $mod1->fork_it()
    $mod1->thread_it()