Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d9fb5c89 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "init: add missing TEMP_FAILURE_RETRY"

parents 4dc73c0b 975bfe11
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 {