NPTL/arc: notify kernel of the TP value
[uClibc.git] / test / tls / tst-tlsmod14a.c
blob0bb393d9c5d54c5cac446c34c824c2db25db9a01
1 #include <stdint.h>
2 #include <stdio.h>
4 #include <tls.h>
6 #if USE_TLS && HAVE___THREAD
8 #define AL 4096
9 struct foo
11 int i;
12 } __attribute ((aligned (AL)));
14 static __thread struct foo f;
15 static struct foo g;
18 #ifndef FCT
19 # define FCT in_dso1
20 #endif
23 int
24 FCT (void)
26 puts (__func__);
28 int result = 0;
30 int fail = (((uintptr_t) &f) & (AL - 1)) != 0;
31 printf ("&f = %p %s\n", &f, fail ? "FAIL" : "OK");
32 result |= fail;
34 fail = (((uintptr_t) &g) & (AL - 1)) != 0;
35 printf ("&g = %p %s\n", &g, fail ? "FAIL" : "OK");
36 result |= fail;
38 return result;
41 #endif