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

Commit 494cffb2 authored by Tom Cherry's avatar Tom Cherry
Browse files

init: add missing TEMP_FAILURE_RETRY

Bug: 150863651
Test: boot
Change-Id: I09e86e08a716c2c2933e090d57818a9aad6486f8
parent e6ecb06d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -136,7 +136,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 {