https://issues.dlang.org/show_bug.cgi?id=22555
Stanislav Blinov <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from Stanislav Blinov <[email protected]> --- I might be wrong, but isn't what's happening here this? - task starts, locks a's monitor and blocks in wait - main thread calls set and blocks trying to lock a's monitor, which is already locked by task I.e. you've a deadlock, but not on condition variable :) --
