summaryrefslogtreecommitdiffstats
path: root/src/pthreads-test.c
blob: fe212b54567ac933fe11f0e3ac6b7424ea6d91a9 (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
/* This file is part of mingw-cross-env.       */
/* See doc/index.html for further information. */

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

#define N 10

void *thread_fn(void *p)
{
    const int *arg = p;
    fprintf(stderr, "Hello from thread %d\n", *arg);
    return NULL;
}

int main(int argc, char *argv[])
{
    pthread_t threads[N];
    int args[N];
    int i;

    (void)argc;
    (void)argv;

    for (i = 0; i < N; i++) {
        args[i] = i;
        if (pthread_create(threads + i, NULL, thread_fn, args + i) != 0) {
            return 1;
        }
    }

    for (i = 0; i < N; i++) {
        if (pthread_join(threads[i], NULL) != 0) {
            return 2;
        }
    }

    return 0;
}