diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 04:43:38 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 04:43:38 +0000 |
| commit | b93fd91be3861ebe7c75d55c736bef78162acc16 (patch) | |
| tree | 395a8de35b14468bea24f4c90fe82a1cea958603 | |
| parent | fa93e2e5b172a3fe0dcfd77bc66979ec90949b1e (diff) | |
| download | ruby-b93fd91be3861ebe7c75d55c736bef78162acc16.tar.gz ruby-b93fd91be3861ebe7c75d55c736bef78162acc16.tar.xz ruby-b93fd91be3861ebe7c75d55c736bef78162acc16.zip | |
* thread.c (rb_thread_atfork): should not leave living_threads
referring freed table while allocating new table.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14574 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | thread.c | 5 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Mon Dec 24 13:43:36 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * thread.c (rb_thread_atfork): should not leave living_threads + referring freed table while allocating new table. + Mon Dec 24 12:49:54 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> * Makefile.in, configure.in, lib/mkmf.rb, */Makefile.sub: specify @@ -1974,11 +1974,10 @@ rb_thread_atfork(void) { rb_thread_t *th = GET_THREAD(); rb_vm_t *vm = th->vm; - volatile VALUE thval = th->self; + VALUE thval = th->self; vm->main_thread = th; - st_free_table(vm->living_threads); - vm->living_threads = st_init_numtable(); + st_clear(vm->living_threads); st_insert(vm->living_threads, thval, (st_data_t) th->thread_id); } |
