diff options
Diffstat (limited to 'src/event/Loop.hxx')
-rw-r--r-- | src/event/Loop.hxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/event/Loop.hxx b/src/event/Loop.hxx index bfa8dc4a9..4bd2a3b2c 100644 --- a/src/event/Loop.hxx +++ b/src/event/Loop.hxx @@ -90,6 +90,14 @@ class EventLoop final : SocketMonitor */ bool again; + /** + * True when handling callbacks, false when waiting for I/O or + * timeout. + * + * Protected with #mutex. + */ + bool busy; + PollGroup poll_group; PollResult poll_result; |