tags:

views:

30

answers:

1

I am using a single POSIX message queue in my application which is accessed by multiple readers. Should I use mutexes in this scenario?

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