Re: core.thread vs std.concurrency - which of them to use?

2020-08-06 Thread Petar via Digitalmars-d-learn
On Thursday, 6 August 2020 at 01:13:28 UTC, Victor L Porton wrote: When to use core.thread and when std.concurrency for multithreading in applications? Is one of them a preferred way? Druntime's core.thread sets the foundation for D's multi-threading (or at least the non-betterC foundation). O

core.thread vs std.concurrency - which of them to use?

2020-08-05 Thread Victor L Porton via Digitalmars-d-learn
When to use core.thread and when std.concurrency for multithreading in applications? Is one of them a preferred way?