diff --git a/main.c b/main.c index dd391a7..6fcd568 100644 --- a/main.c +++ b/main.c @@ -37,7 +37,7 @@ main(int argc, const char *const *argv) const struct sigaction sa = {.sa_handler = &signal_handler}; sigaction(SIGINT, &sa, NULL); - int abort_fd = eventfd(0, EFD_CLOEXEC | EFD_NONBLOCK); + int abort_fd = eventfd(0, EFD_CLOEXEC); assert(abort_fd >= 0); struct bar *bar = conf_to_bar(yml_get_value(conf, "bar"));