aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/combiner.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-07-11 12:43:23 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-07-11 12:43:23 -0700
commit93023e410b0ab351a9a4bb6312327f18d5fa4b68 (patch)
tree9e7b29cc078431630b1119e959016dfe263401e0 /src/core/lib/iomgr/combiner.c
parent4e43685e511a1a3c19ac4060a8ee9f7894dea94d (diff)
Progress to converting chttp2 to combiner locks
Diffstat (limited to 'src/core/lib/iomgr/combiner.c')
-rw-r--r--src/core/lib/iomgr/combiner.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/combiner.c b/src/core/lib/iomgr/combiner.c
index 34e8f43905..5dfef4f25b 100644
--- a/src/core/lib/iomgr/combiner.c
+++ b/src/core/lib/iomgr/combiner.c
@@ -187,3 +187,7 @@ void grpc_combiner_execute_finally(grpc_exec_ctx *exec_ctx, grpc_combiner *lock,
}
grpc_closure_list_append(&lock->final_list, closure, error);
}
+
+void grpc_combiner_force_async_finally(grpc_combiner *lock) {
+ lock->take_async_break_before_final_list = true;
+}