aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2015-05-12 16:04:28 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2015-05-12 16:04:28 -0700
commit5b984ce2faf9fb215daf1842cad4f0207175532e (patch)
treefca3012a0ee0803e1e364e2aa065f8d3aa5324ce /src/core/iomgr
parent00ff7df7f1d192ec4b01920782b0991170bc50b4 (diff)
Added comment to empty kick_poller func.
Diffstat (limited to 'src/core/iomgr')
-rw-r--r--src/core/iomgr/iomgr.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/iomgr/iomgr.c b/src/core/iomgr/iomgr.c
index c845caea0a..d22542fc91 100644
--- a/src/core/iomgr/iomgr.c
+++ b/src/core/iomgr/iomgr.c
@@ -84,7 +84,12 @@ static void background_callback_executor(void *ignored) {
gpr_event_set(&g_background_callback_executor_done, (void *)1);
}
-void grpc_kick_poller(void) { }
+void grpc_kick_poller(void) {
+ /* Empty. The background callback executor polls periodically. The activity
+ * the kicker is trying to draw the executor's attention to will be picked up
+ * either by one of the periodic wakeups or by one of the polling application
+ * threads. */
+}
void grpc_iomgr_init(void) {
gpr_thd_id id;