summaryrefslogtreecommitdiff
path: root/thread_pthread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/thread_pthread.c b/thread_pthread.c
index 420a3f4db5..016ee32abb 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -1189,10 +1189,13 @@ native_stop_timer_thread(int close_anyway)
/* close communication pipe */
if (close_anyway) {
/* TODO: Uninstall all signal handlers or mask all signals.
- * This pass is cleaning phase. It is too rare case
- * to generate problem, so we remains it in TODO.
+ * This pass is cleaning phase (terminate ruby process).
+ * To avoid such race, we skip to close communication
+ * pipe. OS will close it at process termination.
+ * It may not good practice, but pragmatic.
+ * We remain it is TODO.
*/
- close_communication_pipe();
+ /* close_communication_pipe(); */
}
}
return stopped;