aboutsummaryrefslogtreecommitdiffstats
path: root/src/event/Loop.cxx (follow)
Commit message (Collapse)AuthorAgeFilesLines
* event: introduce generic API for internal event loopDenis Krjuchkov2013-11-281-27/+14
|
* Add infrastructure for using multiple event loopsDenis Krjuchkov2013-11-271-5/+18
| | | | | | | | | | | | This change adds two configuration options: --with-eventloop=[glib|internal|auto] --with-pollmethod=[epoll|auto] First allows switching between GLib event loop and internal one. Second chooses backend to use for internal event loop. Conditional compilation symbols are changed accordingly. Additional helper macro MPD_OPTIONAL_FUNC_NODEF is added as well.
* event/SocketMonitor: add method Abandon()Max Kellermann2013-11-061-2/+7
|
* *: use nullptr instead of NULLMax Kellermann2013-10-281-1/+1
|
* system/clock: convert to C++Max Kellermann2013-10-151-4/+4
|
* EventLoop: initialise the thread id explicitlyMax Kellermann2013-08-101-1/+2
|
* EventLoop: new implementation using epollMax Kellermann2013-08-101-0/+196
| | | | Implement an event loop without GLib.
* thread/Id: new class replacing GThread pointersMax Kellermann2013-08-101-3/+3
| | | | Remove a GLib dependencies from class EventLoop and DatabaseLock.
* EventLoop: add methodd IsInside()Max Kellermann2013-08-081-0/+5
| | | | | Track which thread runs the EventLoop and provide a check whether we're currently inside.
* EventLoop: un-inline Run() and othersMax Kellermann2013-08-081-0/+57
Prepare for adding more code.