in reply to Re: How would you use perl debugging tools to pinpoint the problem here?
in thread How would you use perl debugging tools to pinpoint the problem here?
Also,my $limit = 100*1024*1024; # 100 MB
which I find to be better readable, but as usual YMMV.my $limit = 100<<20; # 100 MB
|
|---|