X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FDS.pm;h=0acb034fc25cc5718539a6f858cc7dfdc3b6a02a;hb=9fdf746077bea39281d1e9ee4da2b45577d6b0ea;hp=779215c93e518bd0f29467285d505cc4d7d8596b;hpb=8548f6a4aee0b92adbc298183b551ff3e9ac4281;p=public-inbox.git diff --git a/lib/PublicInbox/DS.pm b/lib/PublicInbox/DS.pm index 779215c9..0acb034f 100644 --- a/lib/PublicInbox/DS.pm +++ b/lib/PublicInbox/DS.pm @@ -105,17 +105,6 @@ sub HaveEpoll { return $HaveEpoll; } -=head2 C<< CLASS->WatchedSockets() >> - -Returns the number of file descriptors which are registered with the global -poll object. - -=cut -sub WatchedSockets { - return scalar keys %DescriptorMap; -} -*watched_sockets = *WatchedSockets; - =head2 C<< CLASS->ToClose() >> Return the list of sockets that are awaiting close() at the end of the @@ -206,20 +195,6 @@ sub AddTimer { die "Shouldn't get here."; } -=head2 C<< CLASS->DescriptorMap() >> - -Get the hash of PublicInbox::DS objects keyed by the file descriptor (fileno) they -are wrapping. - -Returns a hash in list context or a hashref in scalar context. - -=cut -sub DescriptorMap { - return wantarray ? %DescriptorMap : \%DescriptorMap; -} -*descriptor_map = *DescriptorMap; -*get_sock_ref = *DescriptorMap; - sub _InitPoller { return if $DoneInit;