summaryrefslogtreecommitdiff
path: root/test/mutex.c
blob: 8130fec77bceea0fbe8748fddcdf3369a3d84be8 (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
44
45
46
47

#include <bits/pthreadtypes.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>

pthread_t tid[2];
int counter;
pthread_mutex_t lock;

void *trythis(void *arg) {
        pthread_mutex_lock(&lock);
        unsigned long i = 0;
        counter += 1;
        printf("\n Job %d has started\n", counter);

        for (i = 0; i < (0xFFFFFFFF); i++)
                ;
        printf("\n Job %d has finished\n", counter);
        pthread_mutex_unlock(&lock);
        return NULL;
}

int main(void) {
        int i = 0;
        int error;

        pthread_mutex_init(&lock, NULL);

        while (i < 2) {
                error = pthread_create(&(tid[i]), NULL, &trythis, NULL);
                if (error != 0)
                        printf("\nThread can't be created : [%s]",
                               strerror(error));
                i++;
        }

        pthread_join(tid[0], NULL);
        pthread_join(tid[1], NULL);

        pthread_mutex_destroy(&lock);

        return 0;
}