Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    # Simulate "Free to wrong pool" crash from Telnet.pm, line 1987
    ...
    }
    
    do_threads(2);
    
  2. or download this
    local $SIG{"__WARN__"} = sub { push @warns, @_ };
    
  3. or download this
    local $SIG{"__WARN__"} = eval <<'CLOSURE_HACK';
    sub { push @warns, @_ }
    CLOSURE_HACK