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

Commit 3123d612 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "init: add missing TEMP_FAILURE_RETRY" am: d9fb5c89

Change-Id: I1b0adbcc1a1de7ae39f3491520a105d896b35310
parents 1588155e d9fb5c89
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 {