places: fix subprocess-reaping thread creation

Before the repair, a new thread was created with each
subprocess.
This commit is contained in:
Matthew Flatt 2012-12-21 15:50:43 -07:00
parent 8d4dac318c
commit a665239689

View File

@ -1029,6 +1029,7 @@ void scheme_starting_child()
signal_thread = mz_proc_thread_create(mz_proc_thread_signal_worker, NULL);
mz_proc_thread_detach(signal_thread);
started_thread = 1;
}
pending_children++;