1
2#if __x86_64__
3
4    # _myinit sets up TLV content
5    .thread_init_func
6    .quad	_myinit
7
8#endif
9
10#if __i386__
11
12    # _myinit sets up TLV content
13    .thread_init_func
14    .long	_myinit
15
16#endif
17
18.subsections_via_symbols
19