2 * This program tests if a new thread's initial tls data
5 * David Xu <davidxu@freebsd.org>
19 printf("bug, n == %d \n", n
);
31 for (i
= 0; i
< 1000; ++i
) {
32 pthread_create(&td
, NULL
, f1
, NULL
);
33 pthread_join(td
, NULL
);
36 for (i
= 0; i
< 1000; ++i
) {
37 pthread_create(&td
, NULL
, f1
, NULL
);
38 pthread_join(td
, NULL
);