Your message dated Sun, 10 Jul 2011 08:59:38 +0300
with message-id <[email protected]>
and subject line Re: Bug#632700: thanks for your reply
has caused the Debian Bug report #632700,
regarding [perl] just a simplest AnyEvent script, tooks up almost 100% cpu of
my laptop, but it works well on perl 5.14.1
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
632700: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632700
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: perl
Version: 5.12.4-1
Severity: normal
--- Please enter the report below this line. ---
--- System information. ---
Architecture: i386
Kernel: Linux 2.6.39-2-686-pae
Debian Release: wheezy/sid
500 unstable mirrors.sohu.com
--- Package information. ---
Depends (Version) | Installed
====================================-+-====================
perl-base (= 5.12.4-1) | 5.12.4-1
perl-modules (>= 5.12.4-1) | 5.12.4-1
libbz2-1.0 | 1.0.5-6
libc6 (>= 2.4) | 2.13-8
libdb5.1 | 5.1.25-11
libgdbm3 (>= 1.8.3) | 1.8.3-10
zlib1g (>= 1:1.2.3.3.dfsg) | 1:1.2.3.4.dfsg-3
Recommends (Version) | Installed
=========================-+-===========
netbase | 4.46
Suggests (Version) | Installed
=========================================-+-===========
perl-doc | 5.12.4-1
libterm-readline-gnu-perl | 1.20-1+b1
OR libterm-readline-perl-perl |
make | 3.81-8.1
[source]
use strict;
use warnings;
use diagnostics;
use Modern::Perl;
use AnyEvent;
my $cv = AnyEvent->condvar;
my $count = 0;
my $w; $w = AnyEvent->timer(
after => 1,
interval => 2,
cb => sub {
$count++;
warn "\$count = $count";
if ($count >= 10) {
undef $w;
say "exiting...\n";
exit;
}
);
$cv->recv;
--- End Message ---
--- Begin Message ---
On Sat, Jul 09, 2011 at 07:26:49PM +0800, anders lee wrote:
>
> thanks for your advice, it's my fault, i should read the manaual carefully,
> thank you.
OK, no problem. I'm closing the bug then.
--
Niko Tyni [email protected]
--- End Message ---