From a5f4bb444355ccd136d7c62a19d032226f4c81cf Mon Sep 17 00:00:00 2001 From: khromenokroman Date: Sat, 24 Aug 2024 14:33:52 +0200 Subject: [PATCH] iox-#2330 Refactor systemd handler variable names Updated `roudi_systemd` to `roudiSystemd` and `process_notify` to `processNotify` for consistency with naming conventions. This enhances code readability and maintains consistent style throughout the file. --- iceoryx_posh/source/roudi/roudi.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/iceoryx_posh/source/roudi/roudi.cpp b/iceoryx_posh/source/roudi/roudi.cpp index 07b5cf70ee..1a0f3787a7 100644 --- a/iceoryx_posh/source/roudi/roudi.cpp +++ b/iceoryx_posh/source/roudi/roudi.cpp @@ -254,8 +254,8 @@ void RouDi::processRuntimeMessages(runtime::IpcInterfaceCreator&& roudiIpcInterf IOX_LOG(INFO, "RouDi is ready for clients"); fflush(stdout); // explicitly flush 'stdout' for 'launch_testing' - iox::roudi::systemd::Systemd_service_handler roudi_systemd; - roudi_systemd.process_notify(); + iox::roudi::systemd::SystemdServiceHandler roudiSystemd; + roudiSystemd.processNotify(); while (m_runHandleRuntimeMessageThread) { @@ -270,7 +270,7 @@ void RouDi::processRuntimeMessages(runtime::IpcInterfaceCreator&& roudiIpcInterf } } if (!m_runHandleRuntimeMessageThread.load()){ - roudi_systemd.shutdown(); + roudiSystemd.shutdown(); } }