Skip to content
Snippets Groups Projects
Commit 3ea4ed37 authored by David Klempner's avatar David Klempner
Browse files

Merge pull request #326 from ctiller/wakeup3

Initialize mutex
parents 6e64354c 9834fd67
No related branches found
No related tags found
No related merge requests found
......@@ -142,11 +142,13 @@ void grpc_pollset_kick_global_init_fallback_fd(void) {
}
void grpc_pollset_kick_global_init(void) {
gpr_mu_init(&fd_freelist_mu);
grpc_wakeup_fd_global_init();
}
void grpc_pollset_kick_global_destroy(void) {
grpc_wakeup_fd_global_destroy();
gpr_mu_destroy(&fd_freelist_mu);
}
......
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