i need to change locale in the thread to parse double with strtod() correctly, i'm using setlocale() for this (C++). is it thread safe? UPD: another problem. when i invoke setlocale() in main function it doesn't effect in other routines deeper. why??? there are a lot of code, so it's problematic to write the chunk.
|
You need to consult the documentation for whatever implementation you're using. C++ doesn't currently specify anything about threads so it comes down to the implementation (which you haven't yet told us). For example, my Linux manpage for setlocale has the snippet:
which doesn't absolutely indicate that it's thread-unsafe but I'd be very wary. It's likely that calling it with NULL (i.e., querying) would be thread-safe but as soon as you have a thread modifying it, all bets are off. Probably the safest thing to do (assuming it isn't thread-safe) would be to protect all calls to
|
||||
|
|
|
The call to setlocale() may or may not be threadsafe, but the locale setting itself is per-process, not per-thread. That means that even if you setlocale() is thread-safe or you use a mutex to protect yourself, the change will still update the current locale for all your threads. There is a per-thread alternative though: uselocale().
The locale uses reference-counting internally, which is why it is safe for you to free it after you've activated it with newlocale(). |
|||
|
|
|
For C++98 it depends on the compiler and on which runtime lib you select and on what exactly you mean by thread safe. E.g. with MSVC and multi-threaded runtime you should be safe in the sense that C++98 does not address threading (or, for that matter, dynamic libraries). |
|||
|
|