diff options
author | Craig Tiller <ctiller@google.com> | 2017-03-13 12:30:45 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-03-13 12:30:45 -0700 |
commit | d426caca811823f525334ec5952995e0b887f04f (patch) | |
tree | 3cd5673dd6c12e541e257fb65c213896f4898ede /src/core/lib/transport | |
parent | e7a1702fe99ef598efd957c1f7546904298b9dba (diff) |
Use an arena for call & subchannel_call allocation
Diffstat (limited to 'src/core/lib/transport')
-rw-r--r-- | src/core/lib/transport/transport.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/lib/transport/transport.c b/src/core/lib/transport/transport.c index 165950e288..7635fc730d 100644 --- a/src/core/lib/transport/transport.c +++ b/src/core/lib/transport/transport.c @@ -197,9 +197,10 @@ void grpc_transport_set_pops(grpc_exec_ctx *exec_ctx, grpc_transport *transport, void grpc_transport_destroy_stream(grpc_exec_ctx *exec_ctx, grpc_transport *transport, - grpc_stream *stream, void *and_free_memory) { + grpc_stream *stream, + grpc_closure *then_schedule_closure) { transport->vtable->destroy_stream(exec_ctx, transport, stream, - and_free_memory); + then_schedule_closure); } char *grpc_transport_get_peer(grpc_exec_ctx *exec_ctx, |