From 36899dba0bb0100f84c2a4644bf1e2c27627a44b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 20 Dec 2017 10:50:36 +0100 Subject: [PATCH] event/Call: document exceptions --- src/event/Call.hxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/event/Call.hxx b/src/event/Call.hxx index 7a3011b1b..5663ef9e2 100644 --- a/src/event/Call.hxx +++ b/src/event/Call.hxx @@ -29,6 +29,8 @@ class EventLoop; /** * Call the given function in the context of the #EventLoop, and wait * for it to finish. + * + * Exceptions thrown by the given function will be rethrown. */ void BlockingCall(EventLoop &loop, std::function &&f);