Help for this page

Select Code to Download


  1. or download this
           
    $condvar->lock();
    http_get "http://blah", sub { $condvar->unlock();
         print $_[1] };
    
  2. or download this
    sub timer_callback {
        $condvar->lock();
        # ...
        $condvar->unlock();
    }