summaryrefslogtreecommitdiffstats
path: root/tools/regression/tls/ttls4/ttls4.c
blob: 9a1d43b39e7546c1d6ad7a0786a29e9e93e1f2cf (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
/*
 * This program tests if a new thread's initial tls data
 * is clean.
 *
 * David Xu <davidxu@freebsd.org>
 *
 * $FreeBSD$
 */

#include <stdio.h>
#include <pthread.h>

int __thread n;

void *f1(void *arg)
{
	n = 1;
	return (0);
}

void *f2(void *arg)
{
	if (n != 0) {
		printf("bug, n == %d \n", n);
		exit(1);
	}
	return (0);
}

int main()
{
	pthread_t td;
	int i;

	pthread_create(&td, NULL, f1, NULL);
	pthread_join(td, NULL);
	for (i = 0; i < 1000; ++i) {
		pthread_create(&td, NULL, f2, NULL);
		pthread_yield();
		pthread_join(td, NULL);
	}
	return (0);
}
OpenPOWER on IntegriCloud