Help for this page

Select Code to Download


  1. or download this
    Because system() and backticks block SIGINT and SIGQUIT, killing the p
    +rogram they're running doesn't actually interrupt your program.
    
    ...
        $exit_value  = $? >> 8;
        $signal_num  = $? & 127;
        $dumped_core = $? & 128;