summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-24 15:08:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-24 15:08:24 +0000
commit4d6d0a933e93fa56865f4b82131a306374f4d505 (patch)
tree1e7190dcf67225b41a2f8d91ba2f980f95224f90 /thread.c
parent361a713f9666305bfbc82bb60da0c6f10d801483 (diff)
* process.c (rb_fork): stops the timer thread during fork.
[ruby-dev:37117] * thread.c (rb_thread_start_timer_thread): timer thread needs system_working to be set. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20346 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/thread.c b/thread.c
index f49e2e2e4d..b9f7a28cd8 100644
--- a/thread.c
+++ b/thread.c
@@ -2371,6 +2371,7 @@ rb_thread_reset_timer_thread(void)
void
rb_thread_start_timer_thread(void)
{
+ system_working = 1;
rb_thread_create_timer_thread();
}