-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mutex not being released as expected #365
Comments
Hello @rgleim99 , sorry if this is not well documented or has examples, but when preparing the buffer the session lock is not unlocked on purpose because after the "buffer preparation" is expected that the user writes the payload in the prepared buffer. So it is the user responsible for unlocking the session. This is why the session is unlocked only when the buffer preparation fails. You can see an example of the usage at the application level here: https://github.com/micro-ROS/rmw_microxrcedds/blob/bc4eb312ac4601a4137c35f4a56b9b83b4b18339/rmw_microxrcedds_c/src/rmw_publish.c#L76 |
I see. Maybe this should turn into a feature request or improvement suggestion then. Relying on the user to know when to |
IMO this shall be documented because it is completely required that the used unlocks the "prepared buffer lock", or that the user notifies the library that the buffer was written. |
@pablogs9 I think the behavior should definitely be documented and shown in the examples. The current examples are functional because the mutexes are created as recursive, otherwise, you would be getting a deadlock when trying to call the run session function. |
@jpardeiro AFAIK there is no multithreading example in this repo. |
@pablogs9 even in single thread, if the mutexes wouldn't be declared as recursive mutexes here, the examples would not work because they don't release the mutex. Instead, they just rely on the recursive configuration to ensure the mutex can be acquired if the current mutex holder is in the same thread. |
@jpardeiro Yes, I know, but I meant that the examples of this repo were not written to be run in a multithread environment. Unfortunately, the multithread support was written for micro-ROS support and it is used there, but it was not properly documented for the usage within the bare XRCE-DDS Client library. I will add this to the backlog, but we do not have much time right now. |
We tried setting up a scenario where
uxr_run_session_time(&session_1, 1000)
is run in one thread, but publishing happens on a separate thread.This was not publishing to the agent as expected. We discovered that the Mutex acquired in
uxr_prepare_output_stream(&session_1, reliable_out_1, datawriter_id_1, &ub_1, topic_size_1);
was never being released. We found the issue in:The Mutex is only released/unlocked if an error happens. Shouldn't this be released in any case at the end of the function?
Once we removed the else case and just called
UXR_UNLOCK_STREAM_ID(session, stream_id);
everytime, then the system operated as expected.Is there some other reason that the
UXR_UNLOCK_STREAM_ID(session, stream_id);
is called only in the else case?Proposed fix:
The text was updated successfully, but these errors were encountered: