From 45903adaf6da4dd001d21a1126ab6927fb577ee9 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Tue, 21 Jan 2025 16:34:27 -0800 Subject: [PATCH] Reapply "bump msgq (#34410)" (#34443) * Reapply "bump msgq (#34410)" This reverts commit 895c78b09aa3d3d6466205bd85aec78299a95b27. * fix exit early --- msgq_repo | 2 +- selfdrive/pandad/pandad.cc | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/msgq_repo b/msgq_repo index 5bb86f8bc7..102befe731 160000 --- a/msgq_repo +++ b/msgq_repo @@ -1 +1 @@ -Subproject commit 5bb86f8bc7434048ab2d5ce0243a97d9848b34de +Subproject commit 102befe7316522c8a1aca539018188fd97858732 diff --git a/selfdrive/pandad/pandad.cc b/selfdrive/pandad/pandad.cc index bf2a465d78..8439616c33 100644 --- a/selfdrive/pandad/pandad.cc +++ b/selfdrive/pandad/pandad.cc @@ -91,9 +91,6 @@ void can_send_thread(std::vector pandas, bool fake_send) { while (!do_exit && check_all_connected(pandas)) { std::unique_ptr msg(subscriber->receive()); if (!msg) { - if (errno == EINTR) { - do_exit = true; - } continue; }