mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* thread.c (thread_create_core): prohibit thread creation in the
frozen thread group. a patch in [ruby-dev:33176] from sheepman <sheepman AT sheepman.sakura.ne.jp>. * thread.c (thread_create_core): should inherit ThreadGroup from the current thread. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15118 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2a11c7f62a
commit
4920980d17
3 changed files with 47 additions and 1 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
Sat Jan 19 03:46:42 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* thread.c (thread_create_core): prohibit thread creation in the
|
||||||
|
frozen thread group. a patch in [ruby-dev:33176] from sheepman
|
||||||
|
<sheepman AT sheepman.sakura.ne.jp>.
|
||||||
|
|
||||||
|
* thread.c (thread_create_core): should inherit ThreadGroup from
|
||||||
|
the current thread.
|
||||||
|
|
||||||
Sat Jan 19 00:37:19 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sat Jan 19 00:37:19 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* sprintf.c (rb_str_format): set result encoding for wider width.
|
* sprintf.c (rb_str_format): set result encoding for wider width.
|
||||||
|
|
|
@ -22,3 +22,36 @@ class TestThread < Test::Unit::TestCase
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class TestThreadGroup < Test::Unit::TestCase
|
||||||
|
def test_thread_init
|
||||||
|
thgrp = ThreadGroup.new
|
||||||
|
Thread.new{
|
||||||
|
thgrp.add(Thread.current)
|
||||||
|
assert_equal(thgrp, Thread.new{sleep 1}.group)
|
||||||
|
}.join
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_frozen_thgroup
|
||||||
|
thgrp = ThreadGroup.new
|
||||||
|
Thread.new{
|
||||||
|
thgrp.add(Thread.current)
|
||||||
|
thgrp.freeze
|
||||||
|
assert_raise(ThreadError) do
|
||||||
|
Thread.new{1}.join
|
||||||
|
end
|
||||||
|
}.join
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_enclosed_thgroup
|
||||||
|
thgrp = ThreadGroup.new
|
||||||
|
thgrp.enclose
|
||||||
|
Thread.new{
|
||||||
|
assert_raise(ThreadError) do
|
||||||
|
thgrp.add(Thread.current)
|
||||||
|
end
|
||||||
|
assert_nothing_raised do
|
||||||
|
Thread.new{1}.join
|
||||||
|
end
|
||||||
|
}.join
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
6
thread.c
6
thread.c
|
@ -374,6 +374,10 @@ thread_create_core(VALUE thval, VALUE args, VALUE (*fn)(ANYARGS))
|
||||||
{
|
{
|
||||||
rb_thread_t *th;
|
rb_thread_t *th;
|
||||||
|
|
||||||
|
if (OBJ_FROZEN(GET_THREAD()->thgroup)) {
|
||||||
|
rb_raise(rb_eThreadError,
|
||||||
|
"can't start a new thread (frozen ThreadGroup)");
|
||||||
|
}
|
||||||
GetThreadPtr(thval, th);
|
GetThreadPtr(thval, th);
|
||||||
|
|
||||||
/* setup thread environment */
|
/* setup thread environment */
|
||||||
|
@ -382,7 +386,7 @@ thread_create_core(VALUE thval, VALUE args, VALUE (*fn)(ANYARGS))
|
||||||
th->first_func = fn;
|
th->first_func = fn;
|
||||||
|
|
||||||
th->priority = GET_THREAD()->priority;
|
th->priority = GET_THREAD()->priority;
|
||||||
th->thgroup = th->vm->thgroup_default;
|
th->thgroup = GET_THREAD()->thgroup;
|
||||||
|
|
||||||
native_mutex_initialize(&th->interrupt_lock);
|
native_mutex_initialize(&th->interrupt_lock);
|
||||||
/* kick thread */
|
/* kick thread */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue