aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/executor.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-01-20 15:58:57 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-01-20 15:58:57 -0800
commitf8ea95786fc0c266c93881e4df4be9871196ac66 (patch)
treea2652cea936fe76ed2a99a28f48ba6a126a8ad47 /src/core/lib/iomgr/executor.c
parent331f705886468f6b81a49e7b02bf60b4c045f850 (diff)
parentffc843ddcb89bdd285a17ff032b1fd9ba626667e (diff)
Merge branch 'maxmsgsz' into bm_msgsz
Diffstat (limited to 'src/core/lib/iomgr/executor.c')
-rw-r--r--src/core/lib/iomgr/executor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/iomgr/executor.c b/src/core/lib/iomgr/executor.c
index 852775564f..a5b62aa888 100644
--- a/src/core/lib/iomgr/executor.c
+++ b/src/core/lib/iomgr/executor.c
@@ -158,7 +158,7 @@ void grpc_executor_shutdown(grpc_exec_ctx *exec_ctx) {
gpr_mu_destroy(&g_executor.mu);
}
-static const grpc_closure_scheduler_vtable executor_vtable = {executor_push,
- executor_push};
+static const grpc_closure_scheduler_vtable executor_vtable = {
+ executor_push, executor_push, "executor"};
static grpc_closure_scheduler executor_scheduler = {&executor_vtable};
grpc_closure_scheduler *grpc_executor_scheduler = &executor_scheduler;