I am reading beej's guide for Shared Memory Segments
At the end he says:
More commonly, a process will attach to the segment and run for a bit while other programs are changing and reading the shared segment. It's neat to watch one process update the segment and see the changes appear to other processes. Again, for simplicity, the sample code doesn't do that, but you can see how the data is shared between independent processes.
My question is: it is necessary when the shared memory is for read only?