Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | thread/Name: set thread names | Max Kellermann | 2014-01-23 | 1 | -0/+51 |
| | | | | For debugging. | ||||
* | thread/Util: set the SCHED_RESET_ON_FORK flag in SetThreadRealtime() | Max Kellermann | 2014-01-23 | 1 | -1/+1 |
| | |||||
* | OutputThread: use real-time priority | Max Kellermann | 2014-01-14 | 1 | -0/+13 |
| | |||||
* | UpdateGlue: let the update thread run at "idle" priority | Max Kellermann | 2014-01-14 | 1 | -0/+72 |
| | | | | | | The update thread should not affect the rest of the system, therefore set "idle" priority, and let it only run when nobody else is using the resources. | ||||
* | copyright year 2014 | Max Kellermann | 2014-01-13 | 5 | -5/+5 |
| | |||||
* | Thread/Thread: replacement library for GThread | Max Kellermann | 2013-10-17 | 2 | -0/+222 |
| | |||||
* | thread/{Cond,Mutex}: use "class" instead of "typedef" | Max Kellermann | 2013-10-17 | 2 | -5/+4 |
| | | | | Allows forward-declaration. | ||||
* | gcc.h: rename to Compiler.h | Max Kellermann | 2013-10-15 | 1 | -1/+1 |
| | |||||
* | thread/Id: new class replacing GThread pointers | Max Kellermann | 2013-08-10 | 1 | -0/+99 |
| | | | | Remove a GLib dependencies from class EventLoop and DatabaseLock. | ||||
* | thread/Cond: add method timed_wait() | Max Kellermann | 2013-04-17 | 2 | -2/+19 |
| | |||||
* | thread/{Mutex,Cond}: new backend for WIN32 | Max Kellermann | 2013-01-11 | 4 | -4/+135 |
| | | | | | | Use CRITICAL_SECTION and CONDITION_VARIABLE. This requires Windows Vista or newer. It fixes problems with GLib threading objects that were implicitly created by static constructors before g_thread_init(). | ||||
* | thread/Cond: new wrapper for pthread_cond_t or GCond | Max Kellermann | 2013-01-10 | 5 | -0/+189 |
| | |||||
* | thread/GLibMutex: new Mutex implementation | Max Kellermann | 2013-01-10 | 2 | -19/+44 |
| | | | | | Switch WIN32 to this implementation to be able to use condition variables, which is impossible with CriticalSection. | ||||
* | thread/PosixMutex: fix indent | Max Kellermann | 2013-01-10 | 1 | -13/+13 |
| | |||||
* | thread/Mutex: don't use std::mutex | Max Kellermann | 2013-01-07 | 2 | -8/+68 |
| | | | | Use a custom pthread_mutex_t wrapper because std::mutex adds overhead. | ||||
* | Mutex: new wrapper for std::mutex, replaces GMutex | Max Kellermann | 2013-01-04 | 2 | -0/+117 |