Run clang-format on is_epollexclusive_available.cc

pull/23236/head
tpetkov 5 years ago
parent be6a5b36ff
commit 77e2827f3d
  1. 3
      src/core/lib/iomgr/is_epollexclusive_available.cc

@ -94,8 +94,7 @@ bool grpc_is_epollexclusive_available(void) {
return false;
}
// Check that EPOLLEXCLUSIVE is supported at all.
ev.events =
static_cast<uint32_t>(EPOLLET | EPOLLIN | EPOLLEXCLUSIVE);
ev.events = static_cast<uint32_t>(EPOLLET | EPOLLIN | EPOLLEXCLUSIVE);
if (epoll_ctl(fd, EPOLL_CTL_ADD, evfd, &ev) != 0) {
if (!logged_why_not) {
gpr_log(GPR_DEBUG,

Loading…
Cancel
Save