aboutsummaryrefslogtreecommitdiffstats
path: root/thread_pthread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/thread_pthread.c b/thread_pthread.c
index 2a15816713..46cc5715c4 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -1406,8 +1406,6 @@ setup_communication_pipe(void)
return e;
}
- /* validate pipe on this process */
- timer_thread_pipe.owner_process = getpid();
return 0;
}
@@ -1615,6 +1613,9 @@ rb_thread_create_timer_thread(void)
#endif
return;
}
+
+ /* validate pipe on this process */
+ timer_thread_pipe.owner_process = getpid();
timer_thread.created = 1;
#ifdef HAVE_PTHREAD_ATTR_INIT
pthread_attr_destroy(&attr);