Project

General

Profile

This project is closed and read-only.

Actions

Backport #7720

closed

Process.daemon does not clean up background Ruby threads, leading to hang at exit

Backport #7720: Process.daemon does not clean up background Ruby threads, leading to hang at exit

Added by benweint (Ben Weintraub) over 13 years ago. Updated almost 9 years ago.

Status:
Rejected
[ruby-core:51549]

Description

Process.fork appears to make special considerations for Ruby background threads so that they are cleaned up in the child process after fork (since fork() only duplicates the calling thread). Process.daemon also relies on fork internally, but does not make the same considerations, leading to a hang at exit in a daemonized process that had multiple Ruby threads prior to calling Process.daemon.

The attached daemon.rb demonstrates the issue. It will call either Process.daemon (default) or Process.fork (if you pass 'fork' as the first arg).

If you pass nothing, causing it to call Process.daemon, the daemonized Ruby process will still think it has two threads, and will hang indefinitely on exit, in a loop in rb_thread_terminate_all. If you pass 'fork' as the first argument, the forked child does not hang, and appears to have only one Ruby thread (the one that called Process.fork).

It looks like rb_thread_atfork() is the relevant call in the fork case that makes this work, but it doesn't appear to be called in the daemon case.


Files

daemon.rb (306 Bytes) daemon.rb benweint (Ben Weintraub), 01/22/2013 02:33 AM

Related issues 1 (0 open1 closed)

Has duplicate Ruby - Bug #7798: 子スレッドを実行しているとき Process.daemon すると,その後メインスレッドが終了してもプロセスが終了しないClosedActions
Actions

Also available in: PDF Atom