mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
7 lines
295 B
C
7 lines
295 B
C
__thread int mod_tdata1 = 1;
|
|
__thread int mod_tdata2 __attribute__ ((aligned (0x10))) = 2;
|
|
__thread int mod_tdata3 __attribute__ ((aligned (0x1000))) = 4;
|
|
__thread int mod_tbss1;
|
|
__thread int mod_tbss2 __attribute__ ((aligned (0x10)));
|
|
__thread int mod_tbss3 __attribute__ ((aligned (0x1000)));
|