thread互斥

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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include  <stdio.h>
#include  <stdlib.h>
#include  <pthread.h>
#include  <ctype.h>
 
struct arg_set {
        char *fname;
        int  count;
};
 
struct arg_set  *mailbox = NULL;
pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;//互斥锁
pthread_cond_t  flag = PTHREAD_COND_INITIALIZER;//条件变量
 
void *count_words(void *);
int main(int argc, char *argv[])
{
    pthread_t t1, t2;
    struct arg_set args1, args2;   
    int reports_in = 0;
    int total_words = 0;
 
    if ( argc != 3 ){
        printf("usage: %s file1 file2\n", argv[0]);
        exit(1);
    }
 
    args1.fname = argv[1];
    args1.count = 0;
    pthread_create(&t1, NULL, count_words, (void *) &args1);
 
    args2.fname = argv[2];
    args2.count = 0;
    pthread_create(&t2, NULL, count_words, (void *) &args2);
 
    pthread_mutex_lock(&lock);//拿到互斥锁,进入临界区
    while( reports_in < 2 ){
        printf("MAIN: waiting for flag to go up\n");
        pthread_cond_wait(&flag, &lock); //令线程等待在条件变量上
        printf("MAIN: Wow! flag was raised, I have the lock\n");
        printf("%7d: %s\n", mailbox->count, mailbox->fname);
        total_words += mailbox->count;
        if ( mailbox == &args1)
            pthread_join(t1,NULL);//等待线程t1执行结束
        if ( mailbox == &args2)
            pthread_join(t2,NULL);//等待线程t2执行结束
        mailbox = NULL;
        pthread_cond_signal(&flag); //通知等待在条件变量上的线程
        reports_in++;
    }
    pthread_mutex_unlock(&lock);//释放互斥锁
     
    printf("%7d: total words\n", total_words);
}
void *count_words(void *a)
{
    struct arg_set *args = a;
    FILE *fp;
    int  c, prevc = '\0';
     
    if ( (fp = fopen(args->fname, "r")) != NULL ){
        while( ( c = getc(fp)) != EOF ){
            if ( !isalnum(c) && isalnum(prevc) )
                args->count++;
            prevc = c;
        }
        fclose(fp);
    else
        perror(args->fname);
    printf("COUNT: waiting to get lock\n");
    pthread_mutex_lock(&lock);//拿到互斥锁,进入临界区
    printf("COUNT: have lock, storing data\n");
    if ( mailbox != NULL ){
        printf("COUNT: oops..mailbox not empty. wait for signal\n");
        pthread_cond_wait(&flag,&lock);
    }
    mailbox = args;        
    printf("COUNT: raising flag\n");
    pthread_cond_signal(&flag); //通知等在条件变量上的线程
    printf("COUNT: unlocking box\n");
    pthread_mutex_unlock(&lock);   
    return NULL;
}
原文地址:https://www.cnblogs.com/kuohao1214/p/15555078.html