Fix error checking in iconv.
[glibc.git] / elf / tst-tlsmod7.c
blob944b97f9c0c1f983b10fc026e1cba270d10d3df4
1 #include "tst-tls10.h"
3 #ifdef USE_TLS__THREAD
4 __thread int dummy __attribute__((visibility ("hidden"))) = 12;
5 __thread struct A a1 = { 4, 5, 6 };
6 __thread struct A a2 = { 7, 8, 9 };
7 __thread struct A a3 __attribute__((tls_model("initial-exec")))
8 = { 10, 11, 12 };
9 __thread struct A a4 __attribute__((tls_model("initial-exec")))
10 = { 13, 14, 15 };
11 static __thread struct A local1 = { 16, 17, 18 };
12 static __thread struct A local2 __attribute__((tls_model("initial-exec")))
13 = { 19, 20, 21 };
15 void
16 check1 (void)
18 if (a1.a != 4 || a1.b != 5 || a1.c != 6)
19 abort ();
20 if (a2.a != 22 || a2.b != 23 || a2.c != 24)
21 abort ();
22 if (a3.a != 10 || a3.b != 11 || a3.c != 12)
23 abort ();
24 if (a4.a != 25 || a4.b != 26 || a4.c != 27)
25 abort ();
26 if (local1.a != 16 || local1.b != 17 || local1.c != 18)
27 abort ();
28 if (local2.a != 19 || local2.b != 20 || local2.c != 21)
29 abort ();
32 struct A *
33 f1a (void)
35 return &a1;
38 struct A *
39 f2a (void)
41 return &a2;
44 struct A *
45 f3a (void)
47 return &a3;
50 struct A *
51 f4a (void)
53 return &a4;
56 struct A *
57 f5a (void)
59 return &local1;
62 struct A *
63 f6a (void)
65 return &local2;
68 int
69 f1b (void)
71 return a1.a;
74 int
75 f2b (void)
77 return a2.b;
80 int
81 f3b (void)
83 return a3.c;
86 int
87 f4b (void)
89 return a4.a;
92 int
93 f5b (void)
95 return local1.b;
98 int
99 f6b (void)
101 return local2.c;
103 #endif