Closed
Description
Thanks to @drmeepster we now do support basic concurrency and atomics on Windows (#2231). However, we do not support all of the standard library concurrency primitives. Based on my testing:
- Mutex
- RwLock
- Condvar
- thread parking
The fact that we don't support thread parking (which is needed by std::sync::mpsc
) unfortunately blocks rust-lang/rust#103681.