DefaultStorage Attributes
Shared Memory programming model: variables are shared by default
Global variables are SHARED among threads
- Fortran: COMMON blocks, SAVE variables, MODULE variables
- C: File scope variables, static
But not everything is shared
Stack variables in sub-programs called from parallel regions are PRIVATE