Skip to content
Snippets Groups Projects
Commit cc92eb42 authored by Craig Tiller's avatar Craig Tiller
Browse files

Update to new API

parent e576b6c5
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,9 @@ static void pollset_init(grpc_pollset* ps, gpr_mu** mu) { ...@@ -67,7 +67,9 @@ static void pollset_init(grpc_pollset* ps, gpr_mu** mu) {
*mu = &ps->mu; *mu = &ps->mu;
} }
static void pollset_destroy(grpc_pollset* ps) { gpr_mu_destroy(&ps->mu); } static void pollset_destroy(grpc_exec_ctx* exec_ctx, grpc_pollset* ps) {
gpr_mu_destroy(&ps->mu);
}
static grpc_error* pollset_kick(grpc_pollset* p, grpc_pollset_worker* worker) { static grpc_error* pollset_kick(grpc_pollset* p, grpc_pollset_worker* worker) {
return GRPC_ERROR_NONE; return GRPC_ERROR_NONE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment