Help for this page

Select Code to Download


  1. or download this
        $inter->{THR}->kill('SIGTERM');
    
  2. or download this
        $inter->{THR} = ref threads->create(sub{$thread->(\$inter->{INT1})
    +});
    
  3. or download this
    $t = async{ sleep 1000 };;
    
    print ref $t;;
    threads
    
  4. or download this
    Usage: $thr->kill('SIG...') at HardThread.pm line 23.
    
  5. or download this
        $inter->{THR} = threads->create(sub{$thread->(\$inter->{INT1})});
    
  6. or download this
    Invalid value for shared scalar at HardThread.pm line 29.
    
  7. or download this
        $inter->{THR} = shared_clone( threads->create(sub{$thread->(\$inte
    +r->{INT1})}) );