Help for this page

Select Code to Download


  1. or download this
    sub DESTROY {
        my $self = shift;
        &stop;
    }
    
  2. or download this
    sub DESTROY {
        my $self = shift;
        $self->stop();
    }
    
  3. or download this
    local $SIG{INT} = 'IGNORE';
    kill INT => -$$;
    
  4. or download this
    kill INT => $self->{pid};