aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/endpoint.c
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2016-07-21 11:31:01 -0700
committerGravatar Vijay Pai <vpai@google.com>2016-07-21 11:34:02 -0700
commit0a1c5989868cc7465b384139c137c6df3021f564 (patch)
tree728f7762a0325031bc111797a6fd3a61eff536a9 /src/core/lib/iomgr/endpoint.c
parent577d1696e8d39a0226f9cbad61bf1ae9c2695f91 (diff)
parent98f47f61690a494d67f5e3cc6001277695652d26 (diff)
Merge branch 'master' into fc_unary
Diffstat (limited to 'src/core/lib/iomgr/endpoint.c')
-rw-r--r--src/core/lib/iomgr/endpoint.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/endpoint.c b/src/core/lib/iomgr/endpoint.c
index 1ab3733d38..f901fcf962 100644
--- a/src/core/lib/iomgr/endpoint.c
+++ b/src/core/lib/iomgr/endpoint.c
@@ -65,3 +65,7 @@ void grpc_endpoint_destroy(grpc_exec_ctx* exec_ctx, grpc_endpoint* ep) {
char* grpc_endpoint_get_peer(grpc_endpoint* ep) {
return ep->vtable->get_peer(ep);
}
+
+grpc_workqueue* grpc_endpoint_get_workqueue(grpc_endpoint* ep) {
+ return ep->vtable->get_workqueue(ep);
+}