aboutsummaryrefslogtreecommitdiff
path: root/common/coroutines.cpp
AgeCommit message (Collapse)Author
2018-05-10COMMON: Use nullptr instead of NULL or 0 where appropriateBastien Bouclet
2017-07-10Revert "COMMON: Change way the Singleton instances are instantiated"Eugene Sandulenko
This reverts commit eefa72afa1978a9dea10f5b1833fcc8f58a3468e. With this patch ConfigManager is broken.
2017-07-10COMMON: Change way the Singleton instances are instantiatedThierry Crozat
This fixes tons of warnings with clang from a recent xcode version on macOS (and possibly other systems) complaining that an instantiation of _singleton is required but no definition is available.
2014-02-18COMMON: Make GPL headers consistent in themselves.Johannes Schickel
2012-09-26JANITORIAL: Remove trailing whitespaces.Johannes Schickel
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//'
2012-08-28Merge remote-tracking branch 'origin/master' into tonyAlyssa Milburn
Conflicts: common/coroutines.cpp common/coroutines.h devtools/create_project/msbuild.cpp devtools/create_project/visualstudio.cpp
2012-08-25COMMON: Fix waiting for multiple coroutine events.Alyssa Milburn
This fixes the bWaitAll case of waitForMultipleObjects, and also the resetting of events later in the function.
2012-06-17COMMON: Change pulseEvent to better reflect how it works in WindowsPaul Gilbert
2012-06-09COMMON: Changed pulseEvent to allow calling processes to finish executing firstPaul Gilbert
2012-06-07COMMON: Slightly adapt coroutine code to better match our guidelines.Johannes Schickel
I used astyle here, which automatically removes the use of tabs in comments.
2012-06-07COMMON: Move coroutine documentation to the header file.Johannes Schickel
2012-05-29COMMON: Fixed CORO_ADDR parameter names in Doxygen commentsPaul Gilbert
2012-05-25COMMON: Cleaned up coroutine commentsPaul Gilbert
2012-05-25COMMON: Fix method error messagesPaul Gilbert
2012-05-25COMMON: Fix comparison operation on coroutine wait methodsPaul Gilbert
2012-05-20COMMON: Fix comparison operation on coroutine wait methodsPaul Gilbert
2012-05-17COMMON: Fix compilation of coroutines code when COROUTINE_DEBUG is definedPaul Gilbert
2012-05-17COMMON: Improved waiting processes to store what PIDs they're waiting forPaul Gilbert
This is then used in PulseEvent to only execute processes that are specifically waiting on the given PID, rather than all waiting events.
2012-05-17COMMON: Moved the Tinsel Coroutine code into it's own Common classPaul Gilbert
2012-05-13COMMON: Fix compilation of coroutines code when COROUTINE_DEBUG is definedPaul Gilbert
2012-05-13COMMON: Improved waiting processes to store what PIDs they're waiting forPaul Gilbert
This is then used in PulseEvent to only execute processes that are specifically waiting on the given PID, rather than all waiting events.
2012-05-11COMMON: Merged the Tinsel & Tony Coroutine schedulers into CommonPaul Gilbert