Merge "init: add missing TEMP_FAILURE_RETRY"

This commit is contained in:
Treehugger Robot 2020-03-26 21:59:30 +00:00 committed by Gerrit Code Review
commit d9fb5c895b

View file

@ -138,7 +138,7 @@ static void InstallInitNotifier(Epoll* epoll) {
static void WakeEpoll() {
constexpr char value[] = "1";
write(wake_epoll_fd, value, sizeof(value));
TEMP_FAILURE_RETRY(write(wake_epoll_fd, value, sizeof(value)));
}
static class PropWaiterState {