I'm using ROS (Robot operating system) framework. If you are familiar with ROS, in my code, I'm not using activity servers. Plainly using publishers, subscribers and services. Unfortunately, I'm facing issue with pthread_recursive_mutex error. The following is the error and its backtrace.
If anyone is familiar with ROS stack, could you please share what could be potential causes that might cause this runtime error ?
I can give more information about my the runtime error. Help much appreciated. Thanks
/usr/include/boost/thread/pthread/recursive_mutex.hpp:113: void boost::recursive_mutex::lock(): Assertion `!pthread_mutex_lock(&m)' failed.
The
lock
method implementation merely assert the pthread return value:This means that according to the docs, either:
(
EAGAIN
) The mutex could not be acquired because the maximum number of recursive locks for mutex has been exceeded.This would indicate you have some kind of imbalance in your locks (not this call-site, because
unique_lock<>
makes sure that doesn't happen) or are just racking up threads that are all waiting for the same lock(
EOWNERDEAD
) The mutex is a robust mutex and the process containing the previous owning thread terminated while holding the mutex lock. The mutex lock shall be acquired by the calling thread and it is up to the new owner to make the state consistent.Boost does not deal with this case and simply asserts. This would also not likely occur if all your threads use thread-safe lock-guards (
scoped_lock
,unique_lock
,shared_lock
,lock_guard
). It could, however, occur, if you use thelock()
(andunlock()
) functions manually somewhere and the thread exits withoutunlock()
ingThere are some other ways in which (particularly checked) mutexes can fail, but those would not apply to
boost::recursive_mutex