summaryrefslogtreecommitdiffstats
path: root/lib/thread.rb
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-10 21:41:26 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-10 21:41:26 +0000
commita9cb5734bb8d3697e454bce3426763c7afeee80f (patch)
tree850a447972a24dbc0fb468f5466342a26a93d486 /lib/thread.rb
parent36d512afb399c4cda2a891f7ace35916e418481f (diff)
downloadruby-a9cb5734bb8d3697e454bce3426763c7afeee80f.tar.gz
ruby-a9cb5734bb8d3697e454bce3426763c7afeee80f.tar.xz
ruby-a9cb5734bb8d3697e454bce3426763c7afeee80f.zip
* configure.in, ext/thread/extconf.rb, lib/thread.rb: Add a
configure option `--disable-fastthread', to choose the original, pure ruby version of the "thread" library instead of the new, much faster implementation in ext/thread. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@11698 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/thread.rb')
-rw-r--r--lib/thread.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/thread.rb b/lib/thread.rb
index c4bb141ce..7df6a140f 100644
--- a/lib/thread.rb
+++ b/lib/thread.rb
@@ -1,4 +1,8 @@
#
+# NOTE:
+# This file is overwritten by ext/thread/lib/thread.rb unless ruby
+# is configured with --disable-fastthread.
+#
# thread.rb - thread support classes
# $Date$
# by Yukihiro Matsumoto <matz@netlab.co.jp>