0
1
mirror of https://github.com/termux/proot.git synced 2024-09-22 08:31:06 +00:00
proot/tests/test-c47aeb7d.c
2016-08-21 07:42:00 -04:00

34 lines
586 B
C

#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
void *print_hello(void *id)
{
pthread_exit(id);
}
int main(void)
{
const int nb_threads = 10;
pthread_t threads[nb_threads];
int status;
long i;
for(i = 0; i < nb_threads; i++) {
status = pthread_create(&threads[i], NULL, print_hello, (void *) i);
if (status != 0)
exit(EXIT_FAILURE);
}
for(i = 0; i < nb_threads; i++) {
intptr_t result;
status = pthread_join(threads[i], (void **) &result);
if (status != 0 || (int) result != i)
exit(EXIT_FAILURE);
}
exit(EXIT_SUCCESS);
}