summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 13:14:23 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 13:14:23 +0000
commite037d72514d18deb383dffc8fc45e2fc681cfa75 (patch)
tree88e370048d333d71f7a120326c0c85d5435eb41a /thread.c
parentf64fc63cec6a9b9d55faa1fa2bef60efccc3a0dd (diff)
* thread.c: remove Thread.critical(=).
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14701 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/thread.c b/thread.c
index 8e0bd9db3b..0962831ee2 100644
--- a/thread.c
+++ b/thread.c
@@ -696,13 +696,6 @@ rb_thread_schedule(void)
int rb_thread_critical; /* TODO: dummy variable */
-static VALUE
-rb_thread_s_critical(VALUE self)
-{
- rb_warn("Thread.critical is unsupported. Use Mutex instead.");
- return Qnil;
-}
-
VALUE
rb_thread_blocking_region(
rb_blocking_function_t *func, void *data1,
@@ -1014,8 +1007,7 @@ rb_thread_wakeup(VALUE thread)
* call-seq:
* thr.run => thr
*
- * Wakes up <i>thr</i>, making it eligible for scheduling. If not in a critical
- * section, then invokes the scheduler.
+ * Wakes up <i>thr</i>, making it eligible for scheduling.
*
* a = Thread.new { puts "a"; Thread.stop; puts "c" }
* Thread.pass
@@ -1044,8 +1036,7 @@ rb_thread_run(VALUE thread)
* Thread.stop => nil
*
* Stops execution of the current thread, putting it into a ``sleep'' state,
- * and schedules execution of another thread. Resets the ``critical'' condition
- * to <code>false</code>.
+ * and schedules execution of another thread.
*
* a = Thread.new { print "a"; Thread.stop; print "c" }
* Thread.pass
@@ -1304,7 +1295,6 @@ rb_thread_dead(rb_thread_t *th)
* b = Thread.new { Thread.stop }
* c = Thread.new { Thread.exit }
* d = Thread.new { sleep }
- * Thread.critical = true
* d.kill #=> #<Thread:0x401b3678 aborting>
* a.status #=> nil
* b.status #=> "sleep"
@@ -1617,7 +1607,6 @@ rb_thread_priority(VALUE thread)
* end
* b.priority = -2
* sleep 1 #=> 1
- * Thread.critical = 1
* count1 #=> 622504
* count2 #=> 5832
*/
@@ -3038,8 +3027,6 @@ Init_Thread(void)
rb_define_singleton_method(rb_cThread, "exit", rb_thread_exit, 0);
rb_define_singleton_method(rb_cThread, "pass", thread_s_pass, 0);
rb_define_singleton_method(rb_cThread, "list", rb_thread_list, 0);
- rb_define_singleton_method(rb_cThread, "critical", rb_thread_s_critical, 0);
- rb_define_singleton_method(rb_cThread, "critical=", rb_thread_s_critical, 1);
rb_define_singleton_method(rb_cThread, "abort_on_exception", rb_thread_s_abort_exc, 0);
rb_define_singleton_method(rb_cThread, "abort_on_exception=", rb_thread_s_abort_exc_set, 1);
#if THREAD_DEBUG < 0