|
|
|
|
|
by the_mitsuhiko
3590 days ago
|
|
In a language with good threading support, internal threads are typically making things easier rather than harder. I tend to spawn lots of threads in Rust just because I can and it simplifies the code a lot over having to do some async callback mess. In particular there is no sane way to async waitpid() on POSIX. |
|
... I'm not sure I can disagree with "no sane way".