Skip to content
Advertisement

Tag: preempt-rt

Is it safe to use boost provided shared memory and rt_signal (provided in linux) for realtime system?

I am currently working with building realtime IPC system. I am trying to build a realtime system free of all undeterministic components. I try to setup IPC based on shared memory model. Is it safe to use managed_shared_memory from boost library to minimize unpredictable latency? or should I use mmap() for memory sharing? Also Is rt_signal which has channel from

Advertisement