Re: Is it Event.pm or me that's loosing its memory?

[email protected] Fri, 10 May 2002 19:53:11 +0000
Newsgroups perl.loop
Message-ID <20020510195312.MFPK18857.mtiwmhc24.worldnet.att.net@webmail.worldnet.att.net>
I have confirmed that even a Event->timer will grow the 
stack on and on and on.

Here is the script.....

#!/usr/bin/perl -w

use strict;
use Event qw(loop unloop);

Event->timer(interval=>0, cb=>sub{print "Hello\n";});

Event::loop

### thats the script

The process grows and grows.  To me, this seems to 
confirm a problem with Event.pm or its interaction with 
perl.

Brad