diff options
| author | fukachan <fukachan> | 2003-03-17 08:58:50 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2003-03-17 08:58:50 +0000 |
| commit | cfb5683a36cdbe9355f08bde3f85040a11600efb (patch) | |
| tree | fe5f127e4911ab249a453d365c005714e5700fcf /fml/lib/FML/Process/Kernel.pm | |
| parent | c73c909b83ac7cf1a23c752b66b562b76af7d7b8 (diff) | |
| download | fml8-cfb5683a36cdbe9355f08bde3f85040a11600efb.tar.gz fml8-cfb5683a36cdbe9355f08bde3f85040a11600efb.tar.bz2 fml8-cfb5683a36cdbe9355f08bde3f85040a11600efb.zip | |
log setrunnable() succeed.
Diffstat (limited to 'fml/lib/FML/Process/Kernel.pm')
| -rw-r--r-- | fml/lib/FML/Process/Kernel.pm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/Kernel.pm b/fml/lib/FML/Process/Kernel.pm index cfbf1d90..a6158d56 100644 --- a/fml/lib/FML/Process/Kernel.pm +++ b/fml/lib/FML/Process/Kernel.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: Kernel.pm,v 1.163 2003/03/06 09:34:15 fukachan Exp $ +# $FML: Kernel.pm,v 1.164 2003/03/14 03:51:48 fukachan Exp $ # package FML::Process::Kernel; @@ -1774,7 +1774,12 @@ sub queue_in } $queue->in( $msg ) && Log("queue=$qid in"); - $queue->setrunnable(); + if ($queue->setrunnable()) { + Log("queue=$qid runnable"); + } + else { + Log("queue=$qid broken"); + } # return queue object return $queue; |
