Update 07-Considering_Threadability.md

This commit is contained in:
Jason Turner
2015-07-29 19:50:04 -06:00
parent 9180af5306
commit 8641c29a08

View File

@@ -6,7 +6,7 @@ Global data leads to unintended side effects between functions and can make code
### Statics
Besides being global data, statics are not always constructed and deconstructed as you would expect. This is particularly true in cross-platform environments. See for example, [this g++ bug](9https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66830) regarding the order of destruction of shared static data loaded from dynamic modules.
Besides being global data, statics are not always constructed and deconstructed as you would expect. This is particularly true in cross-platform environments. See for example, [this g++ bug](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66830) regarding the order of destruction of shared static data loaded from dynamic modules.
### Shared Pointers