I'm wondering whether static constant variables are thread-safe or not?
Example code snippet:
void foo(int n)
{
static const char *a[] = {"foo","bar","egg","spam"};
if( ... ) {
...
}
}
|
I'm wondering whether static constant variables are thread-safe or not? Example code snippet:
|
|||
|
|
|
To be really safe you should do
this inhibits modification of the data and all the pointers in the table to be modified. BTW, I prefer to write the |
|||
|
|
|
Any variable that is never modified, whether or not it's explicitly declared as const, is inherently thread-safe.
|
||||
|
|
|
In your example the pointer itself can be considered as thread safe. It will be initialized once and won't be modified later. However, the content of the memory pointed won't be thread-safe at all. |
|||||||||||||||||||
|
|
In this example,
Regardless of whether it's As a side note, it's usually a bad idea to declare arrays of pointers to constant strings, especially in code that might be used in shared libraries, because it results in lots of relocations and the data cannot be located in actual constant sections. A much better technique is:
where 5 has been chosen such that all your strings fit. If the strings are variable in length and you don't need to access them quickly (for example if they're error messages for a function like
and you can access the
Note that the final |
|||||
|
In C that would be always thread safe: the sructures would be already created at compile time, thus no extra action is taken at run time, thus no race condition is possible. Beware the C++ compatibility though. Static const object would be initialized on the first entry into the function, but the initialization is not guaranteed to be thread-safe by the language. IOW this is open to a race condition when two different threads come into the function simultaneously and try to initialize the object in parallel. But even in C++, POD (plain old data: structures not using C++ features, like in your example) would behave in the C compatible way. |
|||||||
|