From 475c9ba497f557eb3bc5e69159aa55a8d3b01c75 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Tue, 21 Jan 2025 18:25:14 -0800 Subject: [PATCH] bump msgq (#34445) * Reapply "Reapply "bump msgq (#34410)" (#34443)" This reverts commit cb6eb4f3cf354e5ba231053918b95a0fc4491dc2. * here too * running locally in loop to make sure this was fluke * running locally in loop to make sure this was fluke --- msgq_repo | 2 +- selfdrive/pandad/pandad.cc | 3 --- system/ubloxd/ubloxd.cc | 3 --- 3 files changed, 1 insertion(+), 7 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; } diff --git a/system/ubloxd/ubloxd.cc b/system/ubloxd/ubloxd.cc index 668c1a7ec0..4e7e91f830 100644 --- a/system/ubloxd/ubloxd.cc +++ b/system/ubloxd/ubloxd.cc @@ -26,9 +26,6 @@ int main() { while (!do_exit) { std::unique_ptr msg(subscriber->receive()); if (!msg) { - if (errno == EINTR) { - do_exit = true; - } continue; }