aboutsummaryrefslogtreecommitdiff
path: root/src/threading/mutex.h
Commit message (Expand)AuthorAge
* Rename and move basicmacros.h to util/basic_macros.hest312015-11-02
* Fix Lua scripting synchronizationkwolekr2015-11-01
* Add DISABLE_CLASS_COPY macro (and use it)kwolekr2015-10-27
* Clean up threadingShadowNinja2015-08-23
s='logheader'>* Encode high codepoints as surrogates to safely transport wchar_t over networksfan52021-02-02 | | | | fixes #7643 * Remove unused functions reported by cppcheck (#10463)SmallJoker2020-10-05 | | | | | | | Run unused functions reported by cppcheck This change removes a few (but not all) unused functions. Some unused helper functions were not removed due to their complexity and potential of future use. * Rework packet receiving in ServerThreadsfan52019-11-19 | | | | | Notably it tries to receive all queued packets between server steps, not just one. *