]> git.ipfire.org Git - thirdparty/glibc.git/blob - elf/tst-tlsalign-lib.c
Move libc_freeres_ptrs and libc_subfreeres to hidden/weak functions
[thirdparty/glibc.git] / elf / tst-tlsalign-lib.c
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)));