diff options
| author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-07 12:40:01 +0000 |
|---|---|---|
| committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-07 12:40:01 +0000 |
| commit | 16c1dceeec381e0e8733c55c3855aec757378c81 (patch) | |
| tree | 042b7148e13d37a2d3e1f504d0e7ba49775105b3 /intern.h | |
| parent | 55072cca4f40818e391b9c3702222614ef91ddec (diff) | |
| download | ruby-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.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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)); |
