Replaced CondVar with a Semaphore in the new Signalling code.

This removes the race between releasing the bank semaphore and starting the
WaitCondVar (which was causing deadlocks in Windows)


git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@529 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
ghaushe
2003-01-04 16:55:31 +00:00
parent c043017049
commit 7f0251ba4d
6 changed files with 57 additions and 12 deletions
+1
View File
@@ -1,4 +1,5 @@
Changes towards version 0.2:
- Fixed deadlock races in new FlushGraphics method -PhracturedBlue
- FlushGraphics now waits and notifies on a per-thread level
- No longer using SHGetFolderPath on Windows - SvdB
- Key repeat is now enabled when typing text, from slayne