summaryrefslogtreecommitdiffstats
path: root/intern.h
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-07 12:40:01 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-07 12:40:01 +0000
commit16c1dceeec381e0e8733c55c3855aec757378c81 (patch)
tree042b7148e13d37a2d3e1f504d0e7ba49775105b3 /intern.h
parent55072cca4f40818e391b9c3702222614ef91ddec (diff)
downloadruby-16c1dceeec381e0e8733c55c3855aec757378c81.tar.gz
ruby-16c1dceeec381e0e8733c55c3855aec757378c81.tar.xz
ruby-16c1dceeec381e0e8733c55c3855aec757378c81.zip
* eval.c, intern.h, ext/thread/thread.c: should not free queue
while any live threads are waiting. [ruby-dev:30653] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@12469 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r--intern.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern.h b/intern.h
index 65c916328..d063d5349 100644
--- a/intern.h
+++ b/intern.h
@@ -204,10 +204,13 @@ int rb_thread_alone _((void));
void rb_thread_polling _((void));
void rb_thread_sleep _((int));
void rb_thread_sleep_forever _((void));
+enum rb_thread_status rb_thread_status _((VALUE));
VALUE rb_thread_stop _((void));
VALUE rb_thread_wakeup _((VALUE));
+VALUE rb_thread_wakeup_alive _((VALUE));
VALUE rb_thread_run _((VALUE));
VALUE rb_thread_kill _((VALUE));
+VALUE rb_thread_alive_p _((VALUE));
VALUE rb_thread_create _((VALUE (*)(ANYARGS), void*));
void rb_thread_interrupt _((void));
void rb_thread_trap_eval _((VALUE, int, int));