Are function static variables thread-safe in GCC?
No, it means that the initialization of local statics is thread-safe. You definitely want to leave this feature enabled. Thread-safe initialization of local statics is very important. If you need generally thread-safe access to local statics then you will need to add the appropriate guards yourself.