Skip to content

Commit

Permalink
iox-eclipse-iceoryx#2330 Refactor systemd handler variable names
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
khromenokroman committed Aug 24, 2024
1 parent 864d7b1 commit a5f4bb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions iceoryx_posh/source/roudi/roudi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand All @@ -270,7 +270,7 @@ void RouDi::processRuntimeMessages(runtime::IpcInterfaceCreator&& roudiIpcInterf
}
}
if (!m_runHandleRuntimeMessageThread.load()){
roudi_systemd.shutdown();
roudiSystemd.shutdown();
}
}

Expand Down

0 comments on commit a5f4bb4

Please sign in to comment.