Skip to content
Snippets Groups Projects
Commit 5b984ce2 authored by David Garcia Quintas's avatar David Garcia Quintas
Browse files

Added comment to empty kick_poller func.

parent 00ff7df7
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,12 @@ static void background_callback_executor(void *ignored) { ...@@ -84,7 +84,12 @@ static void background_callback_executor(void *ignored) {
gpr_event_set(&g_background_callback_executor_done, (void *)1); 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) { void grpc_iomgr_init(void) {
gpr_thd_id id; gpr_thd_id id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment