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

This commit is contained in:
TreeHugger Robot 2020-03-25 15:40:26 +00:00 committed by Android (Google) Code Review
commit 3553c5ea4c

View file

@ -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 {