aboutsummaryrefslogtreecommitdiff
path: root/src/jthread/win32/jsemaphore.cpp
AgeCommit message (Collapse)Author
2015-08-23Clean up threadingShadowNinja
* Rename everything. * Strip J prefix. * Change UpperCamelCase functions to lowerCamelCase. * Remove global (!) semaphore count mutex on OSX. * Remove semaphore count getter (unused, unsafe, depended on internal API functions on Windows, and used a hack on OSX). * Add `Atomic<type>`. * Make `Thread` handle thread names. * Add support for C++11 multi-threading. * Combine pthread and win32 sources. * Remove `ThreadStarted` (unused, unneeded). * Move some includes from the headers to the sources. * Move all of `Event` into its header (allows inlining with no new includes). * Make `Event` use `Semaphore` (except on Windows). * Move some porting functions into `Thread`. * Integrate logging with `Thread`. * Add threading test.
2015-02-02Fix some MSVC-specific warnings and add debug path as an MSVC directorykwolekr
2014-01-15Fix win32 reading semaphore count not working (broke all queues)sapier
2014-01-10Make MutexQueue use jsemaphore for signalingsapier
2013-12-06Fix win32 jthread implementationsapier
2013-11-29Fix modstore/favourites hang by adding asynchronous lua job supportsapier