diff options
author | Craig Tiller <ctiller@google.com> | 2017-10-02 15:35:59 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-10-02 15:35:59 -0700 |
commit | 65da0efda3bcf8c7e7962a9a30602df1c9c92bb6 (patch) | |
tree | b7a81df8276b375e43f158e40ecc3cccdc58a421 /src/core/lib/iomgr | |
parent | a35e6e5a0b1d2c9fec817627ee20eefb6ca34568 (diff) |
Init mutex
Diffstat (limited to 'src/core/lib/iomgr')
-rw-r--r-- | src/core/lib/iomgr/ev_epollex_linux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/ev_epollex_linux.c b/src/core/lib/iomgr/ev_epollex_linux.c index e456e108c5..7d3482d779 100644 --- a/src/core/lib/iomgr/ev_epollex_linux.c +++ b/src/core/lib/iomgr/ev_epollex_linux.c @@ -428,6 +428,7 @@ static grpc_error *pollable_create(pollable_type type, pollable **p) { *p = gpr_malloc(sizeof(**p)); (*p)->type = type; gpr_ref_init(&(*p)->refs, 1); + gpr_mu_init(&(*p)->mu); (*p)->epfd = epfd; (*p)->wakeup = wakeup_fd; (*p)->owner_fd = NULL; |