about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--Documentation/comparison.haml2
-rw-r--r--lib/rainbows/rev_thread_pool.rb4
-rw-r--r--t/GNUmakefile2
3 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/comparison.haml b/Documentation/comparison.haml
index afe8484..d9382bc 100644
--- a/Documentation/comparison.haml
+++ b/Documentation/comparison.haml
@@ -89,7 +89,7 @@
     %td.mod RevThreadPool
     %td.tee No
     %td.r18 Yes
-    %td.r19 Yes
+    %td.r19 No
     %td.rbx No
     %td.slow Yes
   %tr.comp_row
diff --git a/lib/rainbows/rev_thread_pool.rb b/lib/rainbows/rev_thread_pool.rb
index 5a7ff82..5e5f14a 100644
--- a/lib/rainbows/rev_thread_pool.rb
+++ b/lib/rainbows/rev_thread_pool.rb
@@ -15,8 +15,8 @@ module Rainbows
   # slow clients and applications with medium-to-slow response times
   # (I/O bound), but less suitable for sleepy applications.
   #
-  # Ruby 1.8 users are strongly advised to use Rev >= 0.3.2 to get
-  # usable performance.
+  # This concurrency model is designed for Ruby 1.9, and Ruby 1.8
+  # users are NOT advised to use this due to high CPU usage.
 
   module RevThreadPool
 
diff --git a/t/GNUmakefile b/t/GNUmakefile
index c7e78bd..1172c67 100644
--- a/t/GNUmakefile
+++ b/t/GNUmakefile
@@ -27,7 +27,6 @@ models += Rev
 models += EventMachine
 models += NeverBlock
 models += RevThreadSpawn
-models += RevThreadPool
 
 ifeq ($(RUBY_ENGINE),ruby)
   rp := )
@@ -37,6 +36,7 @@ ifeq ($(RUBY_ENGINE),ruby)
     models += FiberSpawn
     models += RevFiberSpawn
     models += FiberPool
+    models += RevThreadPool
   endif
 endif