1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* eval.c (rb_kill_thread): renamed in order to get rid of conflict

with a BeOS system function.  [ruby-core:10830]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@13138 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shyouhei 2007-08-21 23:36:21 +00:00
parent 8aec1c9e8c
commit fdad216c7a
3 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Wed Aug 22 08:34:20 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (rb_kill_thread): renamed in order to get rid of conflict
with a BeOS system function. [ruby-core:10830]
Wed Aug 22 08:32:32 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* process.c (ruby_setreuid, ruby_setregid): rename to get rid of name

6
eval.c
View file

@ -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;
}

View file

@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2007-08-22"
#define RUBY_VERSION_CODE 186
#define RUBY_RELEASE_CODE 20070822
#define RUBY_PATCHLEVEL 43
#define RUBY_PATCHLEVEL 44
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8