NAME Time::Out - Easily timeout long running operations SYNOPSIS use Time::Out qw(timeout) ; timeout $nb_secs => sub { # your code goes were and will be intit runs # for more than $nb_secs seconds. } ; if ($@){ # operation timed-out } DESCRIPTION Time::Out provides an easy interface to alarm(2) based timeouts. Nested timeouts are supported. RETURN VALUE 'timeout' returns whatever the c