lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | __thread int mod_tdata1 = 1; |
2 | __thread int mod_tdata2 __attribute__ ((aligned (0x10))) = 2; | ||||
3 | __thread int mod_tdata3 __attribute__ ((aligned (0x1000))) = 4; | ||||
4 | __thread int mod_tbss1; | ||||
5 | __thread int mod_tbss2 __attribute__ ((aligned (0x10))); | ||||
6 | __thread int mod_tbss3 __attribute__ ((aligned (0x1000))); |