[std/locks]close #7998(complete condition variables) (#17711)

* close #7998
* workaround genode

* Update lib/system/syslocks.nim
This commit is contained in:
flywind
2021-04-19 16:51:13 +08:00
committed by GitHub
parent cedbc7035d
commit dc89b21257
5 changed files with 60 additions and 45 deletions

View File

@@ -71,6 +71,11 @@ struct Nim::SysCond
{
_semaphore.up();
}
void broadcastSysCond()
{
_semaphore.up();
}
};
#endif