about summary refs log tree commit homepage
path: root/lib/PublicInbox
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-06-24 02:52:31 +0000
committerEric Wong <e@80x24.org>2019-06-24 05:26:26 +0000
commita3cb58141cb7ef78fc4b3b85f6132804972c20e7 (patch)
tree898ba206a44059cccdc04ab3b6e0a18284b1092b /lib/PublicInbox
parent4efa374fc040c3a4f09160323a2fb92e18304fae (diff)
downloadpublic-inbox-a3cb58141cb7ef78fc4b3b85f6132804972c20e7.tar.gz
They're never called; the only way to break out of that loop
is the PostEventLoop callback.
Diffstat (limited to 'lib/PublicInbox')
-rw-r--r--lib/PublicInbox/DS.pm3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/PublicInbox/DS.pm b/lib/PublicInbox/DS.pm
index 7b87cd56..9811405b 100644
--- a/lib/PublicInbox/DS.pm
+++ b/lib/PublicInbox/DS.pm
@@ -239,7 +239,6 @@ sub EpollEventLoop {
         }
         return unless PostEventLoop();
     }
-    exit 0;
 }
 
 ### The kqueue-based event loop. Gets installed as EventLoop if IO::KQueue works
@@ -264,8 +263,6 @@ sub KQueueEventLoop {
         }
         return unless PostEventLoop();
     }
-
-    exit(0);
 }
 
 =head2 C<< CLASS->SetPostLoopCallback( CODEREF ) >>