aboutsummaryrefslogtreecommitdiff
path: root/src/threading/event.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix Windows buildCraig Robbins2016-05-021-1/+1
| | | | | Fixes the issue introduced by c1a0ebb (Fix use of uninitialised variable in class Event) causing Windows builds to fail
* Fix use of uninitialised variable in class EventCraig Robbins2016-05-011-3/+6
|
* Fix events on WindowsBlockMen2015-12-111-9/+0
|
* Fix Event implementationShadowNinja2015-12-071-0/+95
On non-windows platforms this just used a semaphore, which meant that multiple calls to signal() would result in wait() returning multiple times.