Linux-加锁机制

通信

Posted by MetaNetworks on September 7, 2019
本页面总访问量

加锁机制

比如一台电脑,人在用的时候,其他人没发用,只有等那个人下位,其他人才能用

实现代码:

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
#include <pthread.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>

#define INT_MAX 2e31-1
int times=0;

struct Computer{
    pthread_mutex_t isUsing = PTHREAD_MUTEX_INITIALIZER;
    void use(){
        times++;
        sleep(1);
        printf("电脑被使用了 %d 次.\n",times);
    }
};

int main(){
    Computer computer;

    printf("尝试坐下\n");
    if (pthread_mutex_trylock(&computer.isUsing))
    {
        fprintf(stderr,"位置上有人了.\n");
    }
    computer.use();
    if (pthread_mutex_unlock(&computer.isUsing))
    {
         fprintf(stderr,"电脑死机了.\n");
    }
    printf("电脑关机,开开心心走人.\n");

    exit(0);
}

效果图:

image-20190907174802594