summaryrefslogtreecommitdiff
path: root/test/nptl/tst-tsd6.c
blob: ea0a481b8108b3ff1e5b54bbab3a1b9cd9387dff (plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include <errno.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>
#include "../test-skeleton.h"

#define NKEYS 100
static pthread_key_t keys[NKEYS];
static pthread_barrier_t b;


static void *
tf (void *arg)
{
  void *res = NULL;
  for (int i = 0; i < NKEYS; ++i)
    {
      void *p = pthread_getspecific (keys[i]);
      pthread_setspecific (keys[i], (void *) 7);
      if (p != NULL)
	res = p;
    }
  if (arg != NULL)
    {
      pthread_barrier_wait (arg);
      pthread_barrier_wait (arg);
    }
  return res;
}


static int
do_test (void)
{
  pthread_barrier_init (&b, NULL, 2);

  for (int i = 0; i < NKEYS; ++i)
    if (pthread_key_create (&keys[i], NULL) != 0)
      {
	puts ("cannot create keys");
	return 1;
      }

  pthread_t th;
  if (pthread_create (&th, NULL, tf, &b) != 0)
    {
      puts ("cannot create thread in parent");
      return 1;
    }

  pthread_barrier_wait (&b);

  pid_t pid = fork ();
  if (pid == 0)
    {
      if (pthread_create (&th, NULL, tf, NULL) != 0)
	{
	  puts ("cannot create thread in child");
	  exit (1);
	}

      void *res;
      pthread_join (th, &res);

      exit (res != NULL);
    }
  else if (pid == -1)
    {
      puts ("cannot create child process");
      return 1;
    }

  int s;
  if (TEMP_FAILURE_RETRY (waitpid (pid, &s, 0)) != pid)
    {
      puts ("failing to wait for child process");
      return 1;
    }

  pthread_barrier_wait (&b);
  pthread_join (th, NULL);

  return !WIFEXITED (s) ? 2 : WEXITSTATUS (s);
}


#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"