Multithread app - Read-Only Data

Hello,

I'm coding an application using pthreads.At some point the threads will read some read-only variables.Is it safe NOT to use mutexes, in order to make the program lighter since mutex operations are resource-demanding...

Thanks

If the variables are really read-only, you don't need mutual exclusion access, no.