diff options
author | Robbie Shade <robbie.shade@gmail.com> | 2017-02-07 19:49:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-07 19:49:57 -0500 |
commit | d92d8270e8cc8e02a8119df69ed3b2523bd22de7 (patch) | |
tree | 0df99ae592fafdc919a61fb3001f0969c401346f /test | |
parent | 86e3a5490062fc0c004ad1f2c0a72a38b13c83b1 (diff) | |
parent | 49124e7ae16bd7423a1fa238181743a797d72437 (diff) |
Merge pull request #9617 from rjshade/add_exec_ctx_to_orphan_callback
Adds an exec_ctx argument to orphan_cb in udp_server
Diffstat (limited to 'test')
-rw-r--r-- | test/core/iomgr/udp_server_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/iomgr/udp_server_test.c b/test/core/iomgr/udp_server_test.c index ba7a52ea21..ba572017a2 100644 --- a/test/core/iomgr/udp_server_test.c +++ b/test/core/iomgr/udp_server_test.c @@ -88,7 +88,7 @@ static void on_write(grpc_exec_ctx *exec_ctx, grpc_fd *emfd) { gpr_mu_unlock(g_mu); } -static void on_fd_orphaned(grpc_fd *emfd) { +static void on_fd_orphaned(grpc_exec_ctx *exec_ctx, grpc_fd *emfd) { gpr_log(GPR_INFO, "gRPC FD about to be orphaned: %d", grpc_fd_wrapped_fd(emfd)); g_number_of_orphan_calls++; |