Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
      my ($socket) = @_;
      # play happily ever after with $socket in your new thread
    }
    
  2. or download this
    threads->create(sub { do_stuff($socket) });