diff options
author | Craig Tiller <ctiller@google.com> | 2015-09-09 12:30:59 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-09-09 12:30:59 -0700 |
commit | 8664ca6463e8387b711f32fe283e0115e79c4c54 (patch) | |
tree | c7bacd643339d4473ddf3eb5db7cd8003d2986d3 /src/core/channel | |
parent | 73b6606629bb65551bc804fa9e96b43ee3aa6583 (diff) |
Starting to convert code to work queues
Diffstat (limited to 'src/core/channel')
-rw-r--r-- | src/core/channel/client_channel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/channel/client_channel.c b/src/core/channel/client_channel.c index 2e25033813..2624fcdd53 100644 --- a/src/core/channel/client_channel.c +++ b/src/core/channel/client_channel.c @@ -600,7 +600,8 @@ static void cc_start_transport_op(grpc_channel_element *elem, } if (on_consumed) { - grpc_iomgr_add_callback(on_consumed); + grpc_workqueue_push(grpc_channel_get_workqueue(chand->master), on_consumed, + 1); } } |