Help for this page

Select Code to Download


  1. or download this
    use threads;
    use WWW::Curl::Multi;
    ...
            threads->exit(0) if ($^O eq 'MSWin32' && threads->can('exit'))
    +;
            exit(0);
    }
    
  2. or download this
    use POSIX ();
    use WWW::Curl::Multi;
    ...
            print STDERR "thread exiting\n";
            POSIX::_exit(0);
    }