1#include "tst-tls10.h"
2
3extern __thread struct A a2 __attribute__((tls_model("initial-exec")));
4
5void
6check1 (void)
7{
8 if (a1.a != 4 || a1.b != 5 || a1.c != 6)
9 abort ();
10 if (a2.a != 7 || a2.b != 8 || a2.c != 9)
11 abort ();
12}
13

source code of glibc/elf/tst-tlsmod12.c