Skip Menu |

This queue is for tickets about the Continuation-Escape CPAN distribution.

Report information
The Basics
Id: 87506
Status: new
Priority: 0/
Queue: Continuation-Escape

People
Owner: Nobody in particular
Requestors: MAUKE [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.03
Fixed in: (no value)



Subject: Memory leak in call_cc
There is a memory leak in call_cc: % ( ulimit -v $((100*1024)); perl -e 'use Continuation::Escape; call_cc {} for 0 .. 999999' ) Out of memory! For comparison, the same code using Return::MultiLevel works: % ( ulimit -v $((100*1024)); perl -e 'use Return::MultiLevel qw(with_return); with_return {} for 0 .. 999999' ) %