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

Commit 48426500 authored by Bart Van Assche's avatar Bart Van Assche
Browse files

init: Improve readability of the code in SecondStageMain()



Change the type of epoll_timeout from
std::optional<std::chrono:milliseconds> into std::chrono::milliseconds.
No functionality is changed.

Bug: 213617178
Change-Id: Ieb150e0aeabdb79c8da4649875ea3ed59297343b
Signed-off-by: default avatarBart Van Assche <bvanassche@google.com>
parent cc7ddc04
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1148,7 +1148,7 @@ int SecondStageMain(int argc, char** argv) {
    setpriority(PRIO_PROCESS, 0, 0);
    while (true) {
        // By default, sleep until something happens.
        auto epoll_timeout = std::optional<std::chrono::milliseconds>{kDiagnosticTimeout};
        std::chrono::milliseconds epoll_timeout{kDiagnosticTimeout};

        auto shutdown_command = shutdown_state.CheckShutdown();
        if (shutdown_command) {
@@ -1168,7 +1168,7 @@ int SecondStageMain(int argc, char** argv) {
            if (next_process_action_time) {
                epoll_timeout = std::chrono::ceil<std::chrono::milliseconds>(
                        *next_process_action_time - boot_clock::now());
                if (*epoll_timeout < 0ms) epoll_timeout = 0ms;
                if (epoll_timeout < 0ms) epoll_timeout = 0ms;
            }
        }