in reply to Re: Stopping hanging commands (evals) within debugger
in thread Stopping hanging commands (evals) within debugger

Excellent, testscript works fine! =)

$|=1; $_code=' sleep 1, print for (1..100)'; eval { local $SIG{ INT } = sub{die;}; eval $_code }; print "after interrupt"; eval $_code; # again w/o wrapper

I'll post again when I got it integrated within the debugger!

Cheers Rolf