diff options
author | Craig Tiller <ctiller@google.com> | 2015-05-28 12:44:27 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-05-28 12:44:27 -0700 |
commit | 44883302c32773bc3959ddf06c46727acb7cc328 (patch) | |
tree | 36ab395d6f92934e1a71b47c7eb5d9440e1dfe15 /src/core/channel | |
parent | 0f29c4d375203019da5417ee8577f8cbb996e133 (diff) |
Remove condition variable from pollset
Diffstat (limited to 'src/core/channel')
-rw-r--r-- | src/core/channel/child_channel.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/core/channel/child_channel.c b/src/core/channel/child_channel.c index a2f3c54290..bdd4147117 100644 --- a/src/core/channel/child_channel.c +++ b/src/core/channel/child_channel.c @@ -154,9 +154,18 @@ static void lb_destroy_channel_elem(grpc_channel_element *elem) { } const grpc_channel_filter grpc_child_channel_top_filter = { - lb_start_transport_op, lb_channel_op, sizeof(lb_call_data), - lb_init_call_elem, lb_destroy_call_elem, sizeof(lb_channel_data), - lb_init_channel_elem, lb_destroy_channel_elem, "child-channel", + lb_start_transport_op, + lb_channel_op, + + sizeof(lb_call_data), + lb_init_call_elem, + lb_destroy_call_elem, + + sizeof(lb_channel_data), + lb_init_channel_elem, + lb_destroy_channel_elem, + + "child-channel", }; /* grpc_child_channel proper */ |