I am using a single POSIX message queue in my application which is accessed by multiple readers. Should I use mutexes in this scenario?
views:
30answers:
1
A:
This is similar to http://stackoverflow.com/questions/1158902/is-msgsnd-thread-and-or-process-safe . The short answer is - it's already thread-safe, so there's no need to use mutexes.
DarthShader
2010-03-20 00:35:46