about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-10-12 08:38:53 +0000
committerEric Wong <e@80x24.org>2014-10-12 08:38:53 +0000
commit6ab176f1c5313fb5244036f68de4dd04ea663b0e (patch)
tree5e8499469e7165030a6c0f15b5ebe0c94b35449b /lib
parent091f7bcbeb43d4695ec84b906a162d940195add3 (diff)
downloadyahns-6ab176f1c5313fb5244036f68de4dd04ea663b0e.tar.gz
We have kqueue support since yahns 1.2.0 (March 2014).
Diffstat (limited to 'lib')
-rw-r--r--lib/yahns/queue.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/yahns/queue.rb b/lib/yahns/queue.rb
index add4f78..2abdc27 100644
--- a/lib/yahns/queue.rb
+++ b/lib/yahns/queue.rb
@@ -1,7 +1,7 @@
-# Copyright (C) 2013, Eric Wong <normalperson@yhbt.net>
+# Copyright (C) 2013-2014, all contributors
 # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
 if SleepyPenguin.const_defined?(:Epoll)
   require_relative 'queue_epoll'
 else
-  require_relative 'queue_kqueue' # TODO
+  require_relative 'queue_kqueue'
 end