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

Commit 73ba34f1 authored by Steven Moreland's avatar Steven Moreland
Browse files

blank_screen: always exit with _exit().

Delay starting the threadpool until necessary,
and once started, always exit with _exit().

Bug: 77934844
Test: screen is blanked on reboot
Change-Id: I7715d889a6f78b9ce058fb3841ef7944116d8e82
parent cf31bf85
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -55,5 +55,6 @@ int main() {
        }
    });

    return 0;
    // b/77934844: Avoid running static destructors.
    _exit(1);
}