JointTrajectoryActionController, does it allocate heap resources?
Hi all,
The JointTrajectoryActionController implementation now contains two action servers, which subscribe to, and publish ROS topics. I'm under the impression that the heap allocations associated to these publishers/subscribers are taking place in the realtime control thread. Is this true?, or am I missing something in the code where a separate thread is spun for this?.
OTOH, the old (non-action) topic interface inherited from the deprecated JointSplineTrajectoryController uses realtime_tools::RealtimePublisher
, so those publishers/subscribers do perform their resource allocations in a separate thread.
TIA