struct stat is not posix conform
[glibc.git] / elf / tst-tlsmod3.c
blob6d186c47ee6ba104d653841f20907adbdc91572e
1 #include <stdio.h>
3 #include "tls-macros.h"
5 extern int in_dso (int n, int *caller_foop);
7 COMMON_INT_DEF(comm_n);
12 int
13 in_dso2 (void)
15 int *foop;
16 int result = 0;
17 static int n;
18 int *np;
20 puts ("foo"); /* Make sure PLT is used before macros. */
21 asm ("" ::: "memory");
23 foop = TLS_GD (foo);
24 np = TLS_GD (comm_n);
26 if (n != *np)
28 printf ("n = %d != comm_n = %d\n", n, *np);
29 result = 1;
32 result |= in_dso (*foop = 42 + n++, foop);
34 *foop = 16;
36 return result;