strcmp(variable, "constant");
Or do I have to protect it with a mutex?
Or do I have to protect it with a mutex? |
|||||
|
|
If variable can be modified by other thread you must protect it. No magic here – higher level languages could do such function call atomically and that is the 'magic' not present in C. Please note that protection (by a single lock) need both the 'variable' pointer value (address of the string in the memory) and the string itself (note: it could be referenced by other pointer too). If the string is modified while 'strcmp' is running you could get false result or a buffer overflow and a segmentation fault. |
|||||||
|
|
Locks protect data, not code. Since |
|||
|
|
|
You need to protect access to variable if it is shared. |
|||||||
|
|
It's safe. The parameters and any internal variables go on the stack so are different memory to any other threads that may be calling the same function. |
|||||||||||||
|
|
Look here: http://www.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_09.html There is a list of thread-unsafe functions in POSIX. Accordingly to it at least on POSIX |
|||
|
|