aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/surface/call.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-02-10 14:04:22 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-02-10 14:04:22 -0800
commit24be0f79e2a1a0b8beeb6141aa5dc83804d36a0d (patch)
treec411e2dcd283c3b425e4de931350d190db14ba7b /src/core/surface/call.c
parent1d3561e1eeff042028cc18f45fa781840bea701e (diff)
Rewrite server request startup path
Stub in registered methods, cleanup to the point I understand this code again.
Diffstat (limited to 'src/core/surface/call.c')
-rw-r--r--src/core/surface/call.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/surface/call.c b/src/core/surface/call.c
index ee8e8588c7..cc7094a0ce 100644
--- a/src/core/surface/call.c
+++ b/src/core/surface/call.c
@@ -258,6 +258,10 @@ void grpc_call_set_completion_queue(grpc_call *call,
call->cq = cq;
}
+grpc_completion_queue *grpc_call_get_completion_queue(grpc_call *call) {
+ return call->cq;
+}
+
void grpc_call_internal_ref(grpc_call *c) { gpr_ref(&c->internal_refcount); }
static void destroy_call(void *call, int ignored_success) {