Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/proc/thread-self/root/usr/share/doc/perl-Test-Valgrind/samples/
Upload File :
Current File : //proc/thread-self/root/proc/thread-self/root/usr/share/doc/perl-Test-Valgrind/samples/map.pl

#!/usr/bin/perl

use strict;
use warnings;

use lib 'blib/lib';
use Test::Valgrind;

{
 local $SIG{ALRM} = sub { kill "TERM", $$ };
 alarm 1;
 while (1) { map 1, 1 }
}