Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^4: Segmentation fault

by martin (Friar)
on Jun 25, 2007 at 22:11 UTC ( [id://623270]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Segmentation fault
in thread Segmentation fault

If you're really careful, you can clean up the linked list before it goes out of scope and prevent this error:

[two-way linked list example]

True, but way too much trouble. You may keep the original structure and just add a non-recursive disassembly:

my $i = 30000; my %h = (new => {}); my $r = \%h; for (0..$i) { print $_, "\r"; $r = $r->{new}; $r->{new} = {}; } $r = $h{new}; undef %h; while ($r) { $r = $r->{new}; } print "end\n";

Replies are listed 'Best First'.
Re^5: Segmentation fault
by Joost (Canon) on Jun 25, 2007 at 22:29 UTC

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://623270]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-04-25 14:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found