aboutsummaryrefslogtreecommitdiffstats
path: root/src/GlobalEvents.cxx (follow)
Commit message (Collapse)AuthorAgeFilesLines
* include cleanup using iwyuMax Kellermann2013-11-281-1/+0
|
* *: use nullptr instead of NULLMax Kellermann2013-10-191-2/+2
|
* Client, ...: remove unnecessary glib.h includeMax Kellermann2013-10-151-1/+0
|
* gcc.h: rename to Compiler.hMax Kellermann2013-10-151-1/+1
|
* Log: new logging library APIMax Kellermann2013-10-021-3/+0
| | | | | Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
* event/DeferredMonitor: rename Run() to RunDeferred()Max Kellermann2013-08-071-2/+2
|
* event/DeferredMonitor: use EventLoop::AddIdle()Max Kellermann2013-08-071-2/+5
|
* event/DeferredMonitor: new class wrapping g_idle_add()Max Kellermann2013-08-071-12/+18
|
* *: use gcc.h macros instead of GLibMax Kellermann2013-08-041-1/+2
|
* GlobalEvents: use g_idle_add() instead of WakeFD()Max Kellermann2013-02-271-28/+5
| | | | | Use the GMainLoop specific function to wake up the main loop. This is simpler and comes with very little overhead.
* GlobalEvents: wake up only if the flags were emptyMax Kellermann2013-02-271-1/+1
| | | | | Don't bother checking for the parameter mask. This doesn't matter. The only thing that matters is if a wake-up is already pending.
* Idle, GlobalEvents: use std::atomic::exchange()Max Kellermann2013-02-271-1/+1
| | | | Less overhead than fetch_and() for what we do.
* WakeFD.cxx: use two sockets instead of pipe on Win32Denis Krjuchkov2013-01-131-1/+1
| | | | | | | | | Pipes aren't really pollable on Windows. GLib emulates polling on pipes using separate reader/writer threads. This adds significant overhead and keeps a strong dependency on GLib. socketpair() function is absent on Windows as well. We implement it here in a loose way.
* GlobalEvents: lock-less operation using std::atomicMax Kellermann2013-01-101-31/+8
| | | | Use a bit field instead of a mutex-protected bool array.
* GlobalEvents: move code to class WakeFDMax Kellermann2013-01-091-27/+11
|
* EventPipe: rename to GlobalEventsMax Kellermann2013-01-091-0/+153