[dmd-concurrency] Shutdown protocol

Andrei Alexandrescu andrei at erdani.com
Thu Jan 21 10:48:25 PST 2010


Steve Schveighoffer wrote:
>   foreach(tid; tids) {tid.join();}

Oh btw that shouldn't be coded like that, it's slow. Must be something like:

joinAll(tids);

so joining is initiated in parallel.

Andrei


More information about the dmd-concurrency mailing list