Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | EventLoop: un-inline Run() and others | Max Kellermann | 2013-08-08 | 2 | -22/+61 | |
| | | | | Prepare for adding more code. | |||||
* | event/*Monitor: add method GetEventLoop() | Max Kellermann | 2013-08-08 | 4 | -1/+16 | |
| | ||||||
* | event/SocketMonitor: un-inline Schedule() | Max Kellermann | 2013-08-08 | 2 | -24/+23 | |
| | | | | Merge with CommitEventFlags(). | |||||
* | event/SocketMonitor: add assertions | Max Kellermann | 2013-08-08 | 2 | -0/+12 | |
| | ||||||
* | event/BufferedSocket: add missing include | Max Kellermann | 2013-08-08 | 1 | -0/+1 | |
| | ||||||
* | event/DeferredMonitor: rename Run() to RunDeferred() | Max Kellermann | 2013-08-07 | 2 | -4/+4 | |
| | ||||||
* | event/DeferredMonitor: use EventLoop::AddIdle() | Max Kellermann | 2013-08-07 | 2 | -3/+7 | |
| | ||||||
* | event/DeferredMonitor: new class wrapping g_idle_add() | Max Kellermann | 2013-08-07 | 2 | -0/+109 | |
| | ||||||
* | event/EventFD: move to libsystem | Max Kellermann | 2013-08-07 | 5 | -361/+2 | |
| | ||||||
* | event/SignalMonitor: use signalfd() if available | Max Kellermann | 2013-08-07 | 1 | -1/+72 | |
| | ||||||
* | SignalHandlers: move code to new class SignalMonitor | Max Kellermann | 2013-08-07 | 2 | -0/+197 | |
| | ||||||
* | event/Event{Pipe,FD}: auto-create in constructor | Max Kellermann | 2013-08-07 | 4 | -59/+23 | |
| | | | | Errors are fatal now. This makes the class a lot easier to use. | |||||
* | Makefile.am: move sources to libsystem.a | Max Kellermann | 2013-08-07 | 7 | -10/+10 | |
| | ||||||
* | configure.ac: add option --enable-eventfd | Max Kellermann | 2013-08-06 | 5 | -102/+227 | |
| | | | | | | Remove the runtime check for eventfd(), hard-code the feature once it's been selected at compile time. The class WakeFD is splitted into EventFD and EventPipe, using WakeFD as a macro diversion. | |||||
* | event/TimeoutMonitor: eliminate support for periodic events | Max Kellermann | 2013-04-08 | 2 | -14/+7 | |
| | | | | | No caller needs this. Fixes use-after-free after returning from Client::OnTimeout(). | |||||
* | event/ServerSocket: close only sockets that have been opened | Max Kellermann | 2013-02-04 | 1 | -1/+3 | |
| | | | | Fixes assertion failure. | |||||
* | ServerSocket: Initialize length variable | Uli Schlachter | 2013-02-04 | 1 | -1/+1 | |
| | ||||||
* | event/SocketMonitor: wake up the event loop after flag change | Max Kellermann | 2013-01-30 | 2 | -0/+14 | |
| | ||||||
* | event/Loop: add method WakeUp() | Max Kellermann | 2013-01-30 | 1 | -0/+4 | |
| | ||||||
* | event/ServerSocket: add method GetEventLoop() | Max Kellermann | 2013-01-30 | 1 | -0/+4 | |
| | ||||||
* | ServerSocket: replace callback with virtual method | Max Kellermann | 2013-01-30 | 2 | -17/+12 | |
| | ||||||
* | ServerSocket: expose the class | Max Kellermann | 2013-01-30 | 2 | -154/+133 | |
| | | | | Eliminate the C wrappers. | |||||
* | ServerSocket: move to libevent.a | Max Kellermann | 2013-01-30 | 2 | -0/+579 | |
| | ||||||
* | event/BufferedSocket: move output buffer to FullyBufferedSocket | Max Kellermann | 2013-01-30 | 4 | -112/+202 | |
| | | | | | BufferedSocket has just an input buffer, and FullyBufferedSocket adds the output buffer. | |||||
* | event/SocketMonitor: OnSocketReady() returns bool | Max Kellermann | 2013-01-30 | 3 | -6/+11 | |
| | ||||||
* | event/SocketMonitor: add methods Read(), Write() | Max Kellermann | 2013-01-30 | 4 | -27/+43 | |
| | ||||||
* | require GLib 2.24 | Max Kellermann | 2013-01-29 | 1 | -0/+1 | |
| | ||||||
* | event/SocketMonitor: add method Steal() | Max Kellermann | 2013-01-27 | 2 | -3/+17 | |
| | ||||||
* | event/SocketMonitor: add method Open() | Max Kellermann | 2013-01-15 | 2 | -9/+27 | |
| | | | | Allow creating a closed SocketMonitor instance. | |||||
* | input/Curl: move code to class MultiSocketMonitor | Max Kellermann | 2013-01-15 | 2 | -0/+231 | |
| | ||||||
* | event/SocketMonitor: wrapper class for GSource + GPollFD | Max Kellermann | 2013-01-15 | 4 | -0/+607 | |
| | ||||||
* | event/TimeoutMonitor: wrapper for g_timeout_source_new() | Max Kellermann | 2013-01-14 | 3 | -10/+133 | |
| | ||||||
* | Main, IOThread: move GMainLoop setup code to class EventLoop | Max Kellermann | 2013-01-14 | 1 | -0/+86 | |
| | ||||||
* | WakeFD.cxx: use two sockets instead of pipe on Win32 | Denis Krjuchkov | 2013-01-13 | 1 | -4/+127 | |
| | | | | | | | | | 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. | |||||
* | event/WakeFD: use eventfd() if available | Max Kellermann | 2013-01-10 | 2 | -1/+46 | |
| | ||||||
* | GlobalEvents: move code to class WakeFD | Max Kellermann | 2013-01-09 | 2 | -0/+137 | |