about summary refs log tree commit homepage
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README11
1 files changed, 4 insertions, 7 deletions
diff --git a/README b/README
index 9cb7be8..d3d8afd 100644
--- a/README
+++ b/README
@@ -102,17 +102,14 @@ multiple threads.
   1. blocking acceptors
   2. non-blocking event loop workers
 * epoll (or kqueue) acts as a queue (by using one-shot notifications)
-* acceptors accept new clients and put them in the epoll "queue"
+* acceptors accept new clients and put them in the queue
 * workers pull clients off the queue, rearming them to epoll on EAGAIN
 
 The end result is clients transition freely and fairly between threads
 and will always be able to find the next idle thread to run on.
 
-This design works with kqueue, too, and we support kqueue.  In fact, got
-our design inspiration from the name "kqueue" when working on another
-project.  We may also support libkqueue:
-
-    http://sourceforge.net/projects/libkqueue/
+The design inspiration from the name "kqueue" when working on another
+project.
 
 In addition to multiple threads, yahns optionally supports multiple
 processes to work around low FD limits as well as contention in the:
@@ -125,7 +122,7 @@ processes to work around low FD limits as well as contention in the:
 Copyright
 ---------
 
-Copyright 2013-2015, all contributors (see git repo).
+Copyright 2013-2016, all contributors (see git repo).
 License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 
 yahns is copyrighted Free Software by all contributors, see logs in