I figured it was a known issue, thanks.
Annoyance is that that the thing doesn't have to be recursive, guess I have to use a skip list to destroy
the thing in chunks.
The code for tesing this and finding the limit is trivial:
#!/opt/bin/perl
use strict;
select STDERR;
$| = 1;
print "\nCount, Last value:\n";
for my $count ( 2**15 .. 2**18)
{
print "Testing: $count -> ";
my $head = [];
my $node = $head;
( $node ) = @{ $node } = ( [], $_ )
for 1 .. $count;
bless $node, 'TailNode';
my $value = '';
for( $node = $head ; @$node ; )
{
( $node, $value ) = @$node;
}
print "$value\n";
# $head goes out of scope and segfaults here.
}
package TailNode;
DESTROY
{
print "Destroying $_[0]\n";
}
__END__
Trial runs:
Teseting: 37405 -> 37405
Destroying TailNode=ARRAY(0x82d7f40)
Teseting: 37406 -> 37406
Destroying TailNode=ARRAY(0x83425b0)
Teseting: 37407 -> 37407
Segmentation fault
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.