aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/transport/transport.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-22 10:48:23 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-22 10:48:23 -0700
commit8ad03754ec6775fa4055644d43f06b748cc03d98 (patch)
tree25fb47ffea567cad2ae466a8a8d45bcec87b5b1d /src/core/transport/transport.c
parent9f7dc3a4e5c3eeb6524472c6dc694f0600d03688 (diff)
Change runs to enqueue
Diffstat (limited to 'src/core/transport/transport.c')
-rw-r--r--src/core/transport/transport.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/transport/transport.c b/src/core/transport/transport.c
index e41481aa64..35ba0ba067 100644
--- a/src/core/transport/transport.c
+++ b/src/core/transport/transport.c
@@ -81,9 +81,9 @@ grpc_transport_get_peer (grpc_exec_ctx * exec_ctx, grpc_transport * transport)
void
grpc_transport_stream_op_finish_with_failure (grpc_exec_ctx * exec_ctx, grpc_transport_stream_op * op)
{
- grpc_closure_list_add (closure_list, op->on_done_recv, 0);
- grpc_closure_list_add (closure_list, op->on_done_send, 0);
- grpc_closure_list_add (closure_list, op->on_consumed, 0);
+ grpc_exec_ctx_enqueue (exec_ctx, op->on_done_recv, 0);
+ grpc_exec_ctx_enqueue (exec_ctx, op->on_done_send, 0);
+ grpc_exec_ctx_enqueue (exec_ctx, op->on_consumed, 0);
}
void