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

Commit c42a8a07 authored by Keith Mok's avatar Keith Mok Committed by Automerger Merge Worker
Browse files

Merge "Fix nanosleep in BootAnimation" am: 45e281ef am: 73357c61 am: fd42131e

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1891586

Change-Id: I2a57d1d79aaef67f8fadd47b0e49a9a88d62cf5d
parents 990a14dd fd42131e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1577,7 +1577,7 @@ bool BootAnimation::playAnimation(const Animation& animation) {
                    int err;
                    do {
                        err = clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &spec, nullptr);
                    } while (err<0 && errno == EINTR);
                    } while (err == EINTR);
                }

                checkExit();