diff options
| author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-21 23:36:21 +0000 |
|---|---|---|
| committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-21 23:36:21 +0000 |
| commit | 25fa9378282b774fcbdcaa9bc9d6b5ba4fd29633 (patch) | |
| tree | 76d8cab4c3fa0026559287b9edab41e071f4cde6 /eval.c | |
| parent | e82136d3a48835bb67222b19788b581c93304c83 (diff) | |
| download | ruby-25fa9378282b774fcbdcaa9bc9d6b5ba4fd29633.tar.gz ruby-25fa9378282b774fcbdcaa9bc9d6b5ba4fd29633.tar.xz ruby-25fa9378282b774fcbdcaa9bc9d6b5ba4fd29633.zip | |
* eval.c (rb_kill_thread): renamed in order to get rid of conflict
with a BeOS system function. [ruby-core:10830]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@13138 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
| -rw-r--r-- | eval.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -11268,7 +11268,7 @@ rb_thread_run(thread) static void -kill_thread(th, flags) +rb_kill_thread(th, flags) rb_thread_t th; int flags; { @@ -11303,7 +11303,7 @@ rb_thread_kill(thread) { rb_thread_t th = rb_thread_check(thread); - kill_thread(th, 0); + rb_kill_thread(th, 0); return thread; } @@ -11326,7 +11326,7 @@ rb_thread_kill_bang(thread) VALUE thread; { rb_thread_t th = rb_thread_check(thread); - kill_thread(th, THREAD_NO_ENSURE); + rb_kill_thread(th, THREAD_NO_ENSURE); return thread; } |
