19 #include "rcutils/macros.h"
21 #include "./logging_mutex.hpp"
23 std::shared_ptr<std::recursive_mutex>
24 get_global_logging_mutex()
26 static auto mutex = std::make_shared<std::recursive_mutex>();
27 if (RCUTILS_UNLIKELY(!mutex)) {
28 throw std::runtime_error(
"rclcpp global logging mutex is a nullptr");