in reply to Re^3: Debugging perl crash
in thread Debugging perl crash
$ perl 4.pl Segmentation fault (core dumped) $ cat 4.pl #!/usr/bin/env perl use strict; use warnings; use Data::Dumper; unless (fork()) { my $sz = 2048*1024*1024; my $sc = "x" x $sz; exit(0); } wait(); print Dumper { a => 42}; exit();
|
|---|