about summary refs log tree commit homepage
path: root/lib/PublicInbox/DS.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-06-02 03:39:32 +0000
committerEric Wong <e@80x24.org>2019-06-02 05:23:10 +0000
commitf54c29f39c4d12596866aca8438f23d00dd61705 (patch)
tree4af16326e56bf8d344d1ad3d6ca1fd77a5b77fb4 /lib/PublicInbox/DS.pm
parent1d94048ba6094b9b3bbefe279e066c3992b30408 (diff)
downloadpublic-inbox-f54c29f39c4d12596866aca8438f23d00dd61705.tar.gz
ToClose and HaveEpoll are of no use to us and I see no
future use for them, either.
Diffstat (limited to 'lib/PublicInbox/DS.pm')
-rw-r--r--lib/PublicInbox/DS.pm18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/PublicInbox/DS.pm b/lib/PublicInbox/DS.pm
index 9142f210..89042cfc 100644
--- a/lib/PublicInbox/DS.pm
+++ b/lib/PublicInbox/DS.pm
@@ -95,24 +95,6 @@ sub Reset {
     *EventLoop = *FirstTimeEventLoop;
 }
 
-=head2 C<< CLASS->HaveEpoll() >>
-
-Returns a true value if this class will use IO::Epoll for async IO.
-
-=cut
-sub HaveEpoll {
-    _InitPoller();
-    return $HaveEpoll;
-}
-
-=head2 C<< CLASS->ToClose() >>
-
-Return the list of sockets that are awaiting close() at the end of the
-current event loop.
-
-=cut
-sub ToClose { return @ToClose; }
-
 =head2 C<< CLASS->SetLoopTimeout( $timeout ) >>
 
 Set the loop timeout for the event loop to some value in milliseconds.