X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fhomescreen.cpp;fp=src%2Fhomescreen.cpp;h=cff2810975aa4be27ebf130f43e50d49cc2d045d;hb=6721f3fbd9d3e5de3b41ce1859ae6034da474a8d;hp=b3980b2b520a5da72eb8db66822e84abba62f979;hpb=8f0e20df04e0e6826adc425519840b56d6169404;p=apps%2Fagl-service-homescreen.git diff --git a/src/homescreen.cpp b/src/homescreen.cpp index b3980b2..cff2810 100644 --- a/src/homescreen.cpp +++ b/src/homescreen.cpp @@ -41,7 +41,7 @@ const char _keyId[] = "id"; struct hs_handshake { hs_handshake(int times, int sleep) : m_times(times), m_sleep(sleep) {} int start(afb_api_t api); - void handshake_loop(afb_api_t api); + void handshake_loop(afb_api_t api, int times, int sleeps); enum HandshakeStatus { Handshake_Idle = 0, @@ -121,7 +121,7 @@ int hs_handshake::start(afb_api_t api) AFB_NOTICE("start handshake with windowmanager."); setEventHook(sub_event.c_str(), on_handshake_event); - std::thread th(&hs_handshake::handshake_loop, this, api); + std::thread th(&hs_handshake::handshake_loop, this, api, m_times, m_sleep); th.detach(); return 0; } @@ -136,7 +136,7 @@ int hs_handshake::start(afb_api_t api) * None * */ -void hs_handshake::handshake_loop(afb_api_t api) +void hs_handshake::handshake_loop(afb_api_t api, int times, int sleeps) { int count = 0; do { @@ -154,9 +154,9 @@ void hs_handshake::handshake_loop(afb_api_t api) } ++count; - usleep(m_sleep*1000); - } while(count < m_times); - AFB_NOTICE("handshake over, count=%d.", count); + usleep(sleeps*1000); + } while(count < times); + AFB_NOTICE("handshake over, m_times=%d, m_sleep=%d, count=%d.", times, sleeps, count); HS_AppRecover::instance()->startRecovery(api); }