File: tst-tls1.c

package info (click to toggle)
glibc 2.41-9
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 300,164 kB
  • sloc: ansic: 1,050,507; asm: 238,242; makefile: 20,378; python: 13,537; sh: 11,812; cpp: 5,197; awk: 1,795; perl: 317; yacc: 292; pascal: 182; sed: 19
file content (68 lines) | stat: -rw-r--r-- 1,796 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* glibc test for TLS in ld.so.  */
#include <stdio.h>


__thread int foo, bar __attribute__ ((tls_model("local-exec")));
extern __thread int foo_gd asm ("foo") __attribute__ ((tls_model("global-dynamic")));
extern __thread int foo_ld asm ("foo") __attribute__ ((tls_model("local-dynamic")));
extern __thread int foo_ie asm ("foo") __attribute__ ((tls_model("initial-exec")));
extern __thread int bar_gd asm ("bar") __attribute__ ((tls_model("global-dynamic")));
extern __thread int bar_ld asm ("bar") __attribute__ ((tls_model("local-dynamic")));
extern __thread int bar_ie asm ("bar") __attribute__ ((tls_model("initial-exec")));

static int
do_test (void)
{
  int result = 0;
  int *ap, *bp;


  /* Set the variable using the local exec model.  */
  puts ("set bar to 1 (LE)");
  bar = 1;


  /* Get variables using initial exec model.  */
  fputs ("get sum of foo and bar (IE)", stdout);
  ap = &foo_ie;
  bp = &bar_ie;
  printf (" = %d\n", *ap + *bp);
  result |= *ap + *bp != 1;
  if (*ap != 0 || *bp != 1)
    {
      printf ("foo = %d\nbar = %d\n", *ap, *bp);
      result = 1;
    }


  /* Get variables using local dynamic model or TLSDESC.  */
  fputs ("get sum of foo and bar (LD or TLSDESC)", stdout);
  ap = &foo_ld;
  bp = &bar_ld;
  printf (" = %d\n", *ap + *bp);
  result |= *ap + *bp != 1;
  if (*ap != 0 || *bp != 1)
    {
      printf ("foo = %d\nbar = %d\n", *ap, *bp);
      result = 1;
    }


  /* Get variables using general dynamic model or TLSDESC.  */
  fputs ("get sum of foo and bar (GD or TLSDESC)", stdout);
  ap = &foo_gd;
  bp = &bar_gd;
  printf (" = %d\n", *ap + *bp);
  result |= *ap + *bp != 1;
  if (*ap != 0 || *bp != 1)
    {
      printf ("foo = %d\nbar = %d\n", *ap, *bp);
      result = 1;
    }


  return result;
}


#include <support/test-driver.c>