r27754 - in /branches/upstream/libpoe-component-ikc-perl/current: Changes IKC.pm IKC/Server.pm META.yml

emhn-guest at users.alioth.debian.org emhn-guest at users.alioth.debian.org
Fri Dec 5 11:34:15 UTC 2008


Author: emhn-guest
Date: Fri Dec  5 11:33:58 2008
New Revision: 27754

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=27754
Log:
[svn-upgrade] Integrating new upstream version, libpoe-component-ikc-perl (0.2002)

Modified:
    branches/upstream/libpoe-component-ikc-perl/current/Changes
    branches/upstream/libpoe-component-ikc-perl/current/IKC.pm
    branches/upstream/libpoe-component-ikc-perl/current/IKC/Server.pm
    branches/upstream/libpoe-component-ikc-perl/current/META.yml

Modified: branches/upstream/libpoe-component-ikc-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-ikc-perl/current/Changes?rev=27754&op=diff
==============================================================================
--- branches/upstream/libpoe-component-ikc-perl/current/Changes (original)
+++ branches/upstream/libpoe-component-ikc-perl/current/Changes Fri Dec  5 11:33:58 2008
@@ -1,4 +1,8 @@
 Revision history for Perl extension POE::Component::IKC.
+
+0.2002 26 November 2008
+    - Added call to $kernel->_data_sig_initialize, otherwise child processes
+        will never exit
 
 0.2001 16 January 2008
     - Added copyright and license notices to all POD, as requested by

Modified: branches/upstream/libpoe-component-ikc-perl/current/IKC.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-ikc-perl/current/IKC.pm?rev=27754&op=diff
==============================================================================
--- branches/upstream/libpoe-component-ikc-perl/current/IKC.pm (original)
+++ branches/upstream/libpoe-component-ikc-perl/current/IKC.pm Fri Dec  5 11:33:58 2008
@@ -3,7 +3,7 @@
 
 use strict;
 use vars qw( $VERSION );
-$VERSION="0.2001";
+$VERSION="0.2002";
 
 # Force CPAN to see this
 

Modified: branches/upstream/libpoe-component-ikc-perl/current/IKC/Server.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-ikc-perl/current/IKC/Server.pm?rev=27754&op=diff
==============================================================================
--- branches/upstream/libpoe-component-ikc-perl/current/IKC/Server.pm (original)
+++ branches/upstream/libpoe-component-ikc-perl/current/IKC/Server.pm Fri Dec  5 11:33:58 2008
@@ -592,8 +592,12 @@
                                         # child becomes a child server
     else {
         $heap->{verbose} and warn "$$: Created ", scalar localtime, "\n";
+
+        # This resets some kernel data that was preventing the child process's
+        # kernel from becoming IDLE
+        $kernel->_data_sig_initialize;
+
         # Clean out stuff that the parent needs but not the children
-
         $heap->{'is a child'}   = 1;        # don't allow fork
         $heap->{'failed forks'} = 0;
         $heap->{children}={};               # don't kill child processes

Modified: branches/upstream/libpoe-component-ikc-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-ikc-perl/current/META.yml?rev=27754&op=diff
==============================================================================
--- branches/upstream/libpoe-component-ikc-perl/current/META.yml (original)
+++ branches/upstream/libpoe-component-ikc-perl/current/META.yml Fri Dec  5 11:33:58 2008
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                POE-Component-IKC
-version:             0.2001
+version:             0.2002
 abstract:            Inter-Kernel Communication for POE
 license:             perl
 generated_by:        ExtUtils::MakeMaker version 6.36




More information about the Pkg-perl-cvs-commits mailing list