1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-29 15:41:13 +03:00

Portability fix for testThreads.c

Similar to the one in libxml2, don't assume threads id are scalars
This commit is contained in:
IlyaS
2012-08-16 17:27:15 +08:00
committed by Daniel Veillard
parent bda37db361
commit 2d6e741ed9

View File

@ -198,10 +198,8 @@ main(void)
*/
printf("Pass 1\n");
for (repeat = 0;repeat < 500;repeat++) {
for (i = 0; i < num_threads; i++) {
results[i] = NULL;
tid[i] = (pthread_t) -1;
}
memset(results, 0, sizeof(*results)*num_threads);
memset(tid, 0xff, sizeof(*tid)*num_threads);
for (i = 0; i < num_threads; i++) {
ret = pthread_create(&tid[i], NULL, threadRoutine1,
@ -240,10 +238,8 @@ main(void)
fprintf(stderr, "Main failed to compile stylesheet\n");
exit(1);
}
for (i = 0; i < num_threads; i++) {
results[i] = NULL;
tid[i] = (pthread_t) -1;
}
memset(results, 0, sizeof(*results)*num_threads);
memset(tid, 0xff, sizeof(*tid)*num_threads);
for (i = 0; i < num_threads; i++) {
ret = pthread_create(&tid[i], NULL, threadRoutine2, (void *) cur);