thread-pool-wait-all! hangs if one of the threads is terminated.

Issue #176 resolved
Takashi Kato repo owner created an issue

This hangs:

(import (util concurrent))
(define tp (make-thread-pool 1 raise))
(thread-pool-push-task! tp (lambda () (car 'a)))
(thread-pool-wait-all! tp)

Comments (1)

  1. Log in to comment