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

Commit 3553c5ea authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "init: add missing TEMP_FAILURE_RETRY" into rvc-dev

parents 57db9db4 494cffb2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -137,7 +137,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 {