• 【Linux】锁|死锁|生产者消费者模型


    🔥博客主页: 我要成为C++领域大神
    🎥系列专栏【C++核心编程】 【计算机网络】 【Linux编程】 【操作系统】
    ❤️感谢大家点赞👍收藏⭐评论✍️

    本博客致力于知识分享,与更多的人进行学习交流

    访问互斥

    引起互斥常见的原因:多线程访问全局资源或静态资源,多线程访问文件数据,多线程使用共享数据引发异常

    例如两个线程都在对一个全局变量num=0执行加法操作。执行加法需要有三步操作,从寄存器中取出操作数,在算术逻辑单元进行加1,将结果写回寄存器。如果让两个线程执行加法操作,当其中一个线程A的从寄存器中取出了操作数,另外一个线程B已经完成了加1,此时线程A对操作数完成加1,再放回寄存器仍是1。这就会导致两个线程访问全局资源产生互斥。

    通过下面一个代码可以观察到这一现象:

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. int number;
    10. void * thread_job(void * arg)
    11. {
    12. int tmp;
    13. for(int i=0;i<5000;++i)
    14. {
    15. tmp=number;
    16. printf("Thread 0x%x ++number:%d\n",(unsigned int)pthread_self(),++tmp);
    17. number=tmp;
    18. }
    19. }
    20. int main()
    21. {
    22. pthread_t tid;
    23. pthread_create(&tid,NULL,thread_job,NULL);
    24. pthread_create(&tid,NULL,thread_job,NULL);
    25. while(1) sleep(1);
    26. return 0;
    27. }

    两个线程各对一个全局变量执行5000次加法,结果不可控

    互斥锁

    互斥锁可以避免多线程同时访问资源,避免资源异常,结果异常。在读写全局数据时加上锁,读写完成后解锁。

    pthread_mutex_t lock 互斥锁的数据类型

    关于锁常用的函数:

    pthread_mutex_init(&lock,NULL) 互斥锁初始化

    phtread_mutex_lock(&lock) 上锁

    pthread_mutex_unlock(&lock) 解锁

    pthread_mutex_destory(&lock)释放互斥锁

    两个线程如果同时使用一个锁,会发送锁被占用,一个线程挂起等待。

    加锁的位置很重要,可能改变线程执行流程

    通常情况是全局资源读写时需要上锁

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. pthread_mutex_t lock;//锁需要定义成全局变量,才会对多线程生效
    10. int number;
    11. void * thread_job(void * arg)
    12. {
    13. int tmp;
    14. for(int i=0;i<5000;++i)
    15. {
    16. pthread_mutex_lock(&lock);
    17. tmp=number;
    18. printf("Thread 0x%x ++number:%d\n",(unsigned int)pthread_self(),++tmp);
    19. number=tmp;
    20. pthread_mutex_unlock(&lock);
    21. }
    22. }
    23. int main()
    24. {
    25. pthread_t tid;
    26. pthread_mutex_init(&lock,NULL);
    27. pthread_create(&tid,NULL,thread_job,NULL);
    28. pthread_create(&tid,NULL,thread_job,NULL);
    29. while(1) sleep(1);
    30. return 0;
    31. }

    惊群问题

    多线程争抢资源,因资源有限,未抢到的线程付出了无意义的系统开销

    当一个线程的互斥锁使用完毕后,其他线程都会争抢这个锁, 被唤醒并争夺资源 ,从挂起态回到运行态。当其中一个线程争抢到锁后,其余线程又回到挂起态。造成了无意义的资源浪费和系统开销。

    互斥锁等待队列是操作系统和线程库中用于管理等待互斥锁的线程的一个数据结构。它主要解决多线程环境中对共享资源的竞争问题,确保只有一个线程在某一时刻可以访问共享资源,从而避免数据竞争和不一致性。

    对优先级高的线程使用标志标记

    但是如果正在使用锁的线程释放锁后仍有时间片,它还会占用锁

    旋转锁

    提高锁的利用率,当多个进程需要同时使用锁时,其他线程不会挂起等待,一直处于运行态R。

    读写锁

    互斥锁不允许多个线程同时访问资源,资源的利用率较低,读写锁可以解决这个问题,它支持一个线程写资源,多个线程可以同时读资源,提高资源利用率。

    特点:读共享,写独占,读写互斥

    pthread_rwlock_t lock; 读写锁

    pthread_rwlock_init(&lock,NULL) 读写锁初始化

    pthread_rwlock_destroy(&lock)释放锁

    pthread_rwlock_rdlock(&lock) 读锁上锁

    pthread_rwlock_wrlock(&lock) 写锁上锁

    pthread_rwlock_unlock(&lock) 解锁

    下面是读写锁使用的demo程序

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. int number;
    10. pthread_rwlock_t lock;
    11. void *thread_read(void *arg)
    12. {
    13. while(1)
    14. {
    15. pthread_rwlock_rdlock(&lock);
    16. printf("Read Thread 0x%x Num=%d\n",(unsigned int)pthread_self(),number);
    17. pthread_rwlock_unlock(&lock);
    18. usleep(100000);
    19. }
    20. }
    21. void *thread_write(void *arg)
    22. {
    23. while(1)
    24. {
    25. pthread_rwlock_wrlock(&lock);
    26. printf("Write Thread 0x%x Num=%d\n",(unsigned int)pthread_self(),++number);
    27. pthread_rwlock_unlock(&lock);
    28. usleep(100000);
    29. }
    30. }
    31. int main()
    32. {
    33. pthread_t tids[8];
    34. pthread_rwlock_init(&lock,NULL);
    35. int i;
    36. for(i=0;i<3;++i)
    37. {
    38. pthread_create(&tids[i],NULL,thread_write,NULL);
    39. }
    40. for(i;i<8;++i)
    41. {
    42. pthread_create(&tids[i],NULL,thread_read,NULL);
    43. }
    44. while(i--)
    45. {
    46. pthread_join(tids[i],NULL);
    47. }
    48. pthread_rwlock_destroy(&lock);
    49. exit(0);
    50. }

    运行结果:写的结果各不相同,读的结果都相同

    进程互斥锁

    通过修改互斥锁属性可以将线程互斥锁变为进程互斥锁,在进程间使用。

    pthread_mutexattr_t互斥锁属性类型,默认情况下属性中均为线程互斥锁

    pthread_mutexattr_setpshared(pthread_mutexattr_t* attr,PTHREAD_PROCESS_PRIVATE | PTHREAD_PROCESS_SHARED)修改锁属性中的成员

    下面是多进程共享内存,使用了互斥锁来保护共享资源的demo程序

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. typedef struct {
    10. int number;
    11. pthread_mutex_t lock;
    12. } shared_t;
    13. int main(void) {
    14. int fd;
    15. fd = open("PROCESS_LOCK", O_RDWR | O_CREAT, 0664);
    16. ftruncate(fd, sizeof(shared_t)); // 扩展文件大小
    17. shared_t *ptr = NULL;
    18. ptr = mmap(NULL, sizeof(shared_t), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
    19. pid_t pid;
    20. // 初始化共享资源
    21. ptr->number = 0;
    22. pthread_mutexattr_t attr;
    23. // 初始化互斥锁属性
    24. pthread_mutexattr_init(&attr);
    25. // 设为进程间共享互斥锁
    26. pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
    27. // 用属性初始化互斥锁
    28. pthread_mutex_init(&ptr->lock, &attr);
    29. pid = fork();
    30. if (pid > 0) {
    31. // 父进程
    32. for (int i = 0; i < 5000; i++) {
    33. pthread_mutex_lock(&ptr->lock);
    34. printf("Parent pid %d: number = %d\n", getpid(), ++(ptr->number));
    35. pthread_mutex_unlock(&ptr->lock);
    36. }
    37. wait(NULL);
    38. } else if (pid == 0) {
    39. // 子进程
    40. for (int i = 0; i < 5000; i++) {
    41. pthread_mutex_lock(&ptr->lock);
    42. printf("Child pid %d: number = %d\n", getpid(), ++(ptr->number));
    43. pthread_mutex_unlock(&ptr->lock);
    44. }
    45. exit(0);
    46. } else {
    47. perror("fork call failed");
    48. exit(0);
    49. }
    50. close(fd);
    51. pthread_mutexattr_destroy(&attr);
    52. pthread_mutex_destroy(&ptr->lock);
    53. munmap(ptr, sizeof(shared_t));
    54. return 0;
    55. }

    文件读写锁

    1把写锁,n把读锁,读共享,写互斥,读写互斥

    通过修改文件结构体里的文件锁结构体属性来实现上锁和解锁效果。用户需要自定义锁结构体并赋值,而后对文件默认锁结构体进行替换,实现文件上锁效果

    通过查看手册,l_type是锁的类型,有读锁,写锁,未上锁三种状态

    l_whence是设置开始加锁的位置(相对于文件整个文件的位置)

    l_start是在加锁位置的偏移量

    l_len是加锁的长度

    l_pid是当前使用锁的进程pid

    使用下面这个函数可以设置锁的状态和得到锁的状态,根据第二个参数来判断是得到锁还是上锁。

    fcntl(fd,F_GETLK, struct flock * lock) 将文件默认的锁结构体传出到lock变量中

    fcntl(fd,F_SETLK, struct flock * newlock)将自定义的newlock替换文件原有的锁结构体,实现上锁效果。F_SETLK是非阻塞上锁,F_SETLKW是阻塞上锁关键字,如果文件锁被占用,则会挂起等待。

    下面是对文件进行上锁的demo程序:

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. int main()
    10. {
    11. int fd=open("file_test",O_RDWR);
    12. struct flock old;
    13. fcntl(fd,F_GETLK,&old);
    14. //if(old.l_type==F_UNLCK)
    15. //{
    16. printf("file_test lock status:F_UNLOCK\n");
    17. struct flock newlock;
    18. newlock.l_type=F_WRLCK;
    19. newlock.l_whence=SEEK_SET;
    20. newlock.l_start=0;
    21. newlock.l_len=0;
    22. fcntl(fd,F_SETLKW,&newlock);
    23. printf("Process A %d set file_test lock status:F_WRLCK\n",getpid());
    24. sleep(10);
    25. newlock.l_type=F_UNLCK;
    26. fcntl(fd,F_SETLKW,&newlock);
    27. printf("Process A %d set file_test lock status:F_UNLCK\n",getpid());
    28. //}
    29. //else
    30. //printf("file_test lock status:F_WRLCK\n");
    31. return 0;
    32. }
    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. int main()
    10. {
    11. int fd=open("file_test",O_RDWR);
    12. struct flock newlock;
    13. newlock.l_type=F_WRLCK;
    14. newlock.l_whence=SEEK_SET;
    15. newlock.l_start=0;
    16. newlock.l_len=0;
    17. fcntl(fd,F_SETLKW,&newlock);
    18. printf("Process B %d set file_test lock status:F_WRLCK\n",getpid());
    19. return 0;
    20. }

    运行结果:F_SETLKW是阻塞上锁关键字,文件锁被进程A占用,进程B挂起等待

    死锁问题

    锁资源有限,但多线程相互请求锁资源,导致线程永久阻塞,这种现象称为死锁。

    死锁发送的四个必要条件:

    请求与保持条件:某个线程在占用一把锁后还要请求新锁,容易引发死锁问题

    不可剥夺条件:除了占用资源的线程外,其他人无法解锁资源

    互斥条件:某个线程占用锁资源后,其他线程申请则挂起等待

    环路等待条件:每个线程都在等待相邻线程手中的资源,这种称为等待环路

    下面是产生死锁问题的demo程序

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. pthread_mutex_t lockA,lockB;
    10. int numA=5;
    11. int numB=6;
    12. void *thread_jobA(void* arg)
    13. {
    14. pthread_mutex_lock(&lockA);
    15. printf("numA = %d\n",numA);
    16. sleep(0);
    17. pthread_mutex_lock(&lockB);
    18. printf("numA + numB = %d\n",numA+numB);
    19. pthread_mutex_unlock(&lockB);
    20. pthread_mutex_unlock(&lockA);
    21. }
    22. void *thread_jobB(void* arg)
    23. {
    24. pthread_mutex_lock(&lockB);
    25. printf("numB = %d\n",numB);
    26. sleep(0);
    27. pthread_mutex_lock(&lockA);
    28. printf("numA + numB = %d\n",numA+numB);
    29. pthread_mutex_unlock(&lockA);
    30. pthread_mutex_unlock(&lockB);
    31. }
    32. int main()
    33. {
    34. pthread_mutex_init(&lockA,NULL);
    35. pthread_mutex_init(&lockB,NULL);
    36. pthread_t tid;
    37. pthread_create(&tid,NULL,thread_jobA,NULL);
    38. pthread_create(&tid,NULL,thread_jobB,NULL);
    39. while(1) sleep(1);
    40. return 0;
    41. }

    线程A因线程B占用锁而挂起,线程B因线程A占用锁而挂起。两个线程都没有打印第二行输出。

    死锁处理

    产生死锁后,杀死死锁线程,解除死锁,而后再创建(死锁频繁,创建销毁线程开销较大)

    死锁检测

    有向图检测

    可以通过图的遍历算法检测出图中是否出现环路,如果是则已发生死锁,可以通过杀死线程的方式杀死某个节点,解除死锁。

    死锁预防

    哲学家就餐问题

    有五个哲学家,他们围坐在一张圆桌旁,桌上摆放着五个盘子和五根筷子。哲学家们的生活方式是交替进行思考和进餐。为了进餐,哲学家需要两根筷子,因此每个哲学家必须同时从自己左右两侧拿起筷子才能进餐。哲学家放下筷子时,思考开始。

    死锁:如果每个哲学家拿起自己右边的筷子,并等待左边的筷子,那么他们将永远等待下去,这就形成了死锁。

    饥饿:某个哲学家可能一直无法得到两根筷子进餐,导致饿死。

    资源竞争:哲学家们同时拿筷子的动作需要同步,以防止出现竞争条件。

    解锁死锁问题的方法

    礼貌策略:当某个哲学家拿起左手的资源,发现无法获取右手的资源,它会放下左手资源,让其他人就餐 

    活锁问题:如果哲学家同时频繁触发礼貌机制,导致所有哲学家拿起放下餐具,无法进食,饿死


    高权级策略:选中一名哲学家提高权限,此哲学家要进餐时,向相邻哲学家发送通知,让其放下资源

    高权策略弊端:由于优先级转换,可能导致多数时间,只有超级哲学家在就餐

    银行家算法

    银行家算法是一种避免死锁的算法,它通过模拟资源分配,检查在给定资源分配之后,系统是否会进入安全状态。如果会进入安全状态,则分配资源,否则不分配。

    银行家算法将资源都抽象为银行资产,每个用户借款,银行进行借款风险评估,如果风险超出阈值,禁止放款

    线程控制(条件变量)

    条件变量技术实现线程的挂起和唤醒。为线程指定执行条件,按执行条件挂起和唤醒线程。

    条件变量类型 pthread_cond_t 线程可以在条件变量上挂起,也可以从中唤醒。

    相关函数

    pthread_cond_init(pthread_cond_t *cd,NULL) 初始化条件变量

    pthread_cond_destroy(pthread_cond_t* cd,NULL) 销毁条件变量

    pthread_cond_wait(pthread_cond_t* cd, pthread_mutex_t *lock)等待条件变量的信号。与互斥锁一起使用,实现线程间的同步。在进入等待状态前,自动释放与条件变量关联的互斥锁,以便其他线程能够修改条件并发出信号。

    两次执行:
    线程第一次执行wait函数,挂起线程的同时解锁互斥锁。
    线程被唤醒的同时执行wait,上锁互斥锁

    pthread_cond_signal(pthread_cond_t * cd) 唤醒一个挂起在cd中的线程

    pthread_cond_broadcast(pthread_cond_t * cd) 唤醒所有挂起在cd中的线程

    signal函数的误唤醒,如果系统是多核处理器CPU,signal函数可能唤醒多个CPU,导致误唤醒。

    下面这段demo程序实现了条件控制线程交替工作

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. int day_night;
    10. pthread_mutex_t lock;
    11. pthread_cond_t cond;
    12. void * threadA_job(void *arg)
    13. {
    14. while(1)
    15. {
    16. pthread_mutex_lock(&lock);
    17. while(day_night==0)
    18. {
    19. pthread_cond_wait(&cond,&lock);
    20. }
    21. printf("Thread A TID 0x%x is working,working state:%d\n",(unsigned int)pthread_self(),day_night);
    22. --day_night;
    23. pthread_mutex_unlock(&lock);
    24. pthread_cond_signal(&cond);
    25. }
    26. }
    27. void * threadB_job(void *arg)
    28. {
    29. while(1)
    30. {
    31. pthread_mutex_lock(&lock);
    32. while(day_night)
    33. {
    34. pthread_cond_wait(&cond,&lock);
    35. }
    36. printf("Thread B TID 0x%x is working,working state:%d\n",(unsigned int)pthread_self(),day_night);
    37. ++day_night;
    38. pthread_mutex_unlock(&lock);
    39. pthread_cond_signal(&cond);
    40. }
    41. }
    42. int main()
    43. {
    44. pthread_t tid;
    45. pthread_create(&tid,NULL,threadA_job,NULL);
    46. pthread_create(&tid,NULL,threadB_job,NULL);
    47. while(1) sleep(1);
    48. return 0;
    49. }

    ​ 

    生产者消费者

    经典的数据传递或任务传递模型


    生产者:任务队列为满挂起,非满则添加数据

    生产者生产任务后,通知一个消费者,让它获取任务


    消费者:任务队列为空挂起,非空则获取任务执行

    消费者获取任务后,唤醒一个生产者


    需要两个条件变量

    Not_Full Not_Null

    遍历时使用环形队列实现

    下面是实现生产者消费者的demo程序:

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. pthread_mutex_t lock;
    10. pthread_cond_t Not_Full;
    11. pthread_cond_t Not_Empty;
    12. typedef struct
    13. {
    14. int id;
    15. char desc[1024];
    16. }data_t;
    17. typedef struct
    18. {
    19. data_t * container;
    20. int Front;
    21. int Rear;
    22. int Max;
    23. int Cur;
    24. }queue_t;
    25. queue_t * Create_queue(int Max)
    26. {
    27. queue_t * que=(queue_t *)malloc(sizeof(queue_t));
    28. que->Front=0;
    29. que->Rear=0;
    30. que->Max=Max;
    31. que->Cur=0;
    32. que->container=(data_t*)malloc(sizeof(data_t)*Max);
    33. return que;
    34. }
    35. void * Customer_job(void * arg)
    36. {
    37. pthread_detach(pthread_self());
    38. queue_t *que=(queue_t*)arg;
    39. data_t node;
    40. while(1)
    41. {
    42. while(que->Cur==0)
    43. {
    44. pthread_cond_wait(&Not_Empty,&lock);
    45. }
    46. node=que->container[que->Rear];
    47. printf("Customer TID 0x%x Get Data Successfully,node id:%d node desc:%s\n",(unsigned int)pthread_self(),node.id,node.desc);
    48. --(que->Cur);
    49. que->Rear=(que->Rear+1)%que->Max;
    50. pthread_mutex_unlock(&lock);
    51. pthread_cond_signal(&Not_Full);
    52. }
    53. pthread_exit(NULL);
    54. }
    55. int main()
    56. {
    57. pthread_t tid[3];
    58. if(pthread_mutex_init(&lock,NULL)!=0 || pthread_cond_init(&Not_Empty,NULL)!=0 || pthread_cond_init(&Not_Full,NULL)!=0)
    59. {
    60. printf("init failed\n");
    61. exit(0);
    62. }
    63. queue_t * que=Create_queue(100);
    64. data_t node;
    65. for(int i=0;i<3;++i)
    66. {
    67. pthread_create(&tid[i],NULL,Customer_job,(void*)que);
    68. }
    69. //生产者循环添加任务
    70. for(int i=0;i<20;++i)
    71. {
    72. node.id=i;
    73. bzero(node.desc,sizeof(node.desc));
    74. sprintf(node.desc,"测试数据%d",i);
    75. pthread_mutex_lock(&lock);
    76. que->container[que->Front]=node;
    77. que->Front=(que->Front+1)%que->Max;
    78. ++que->Cur;
    79. pthread_mutex_unlock(&lock);
    80. pthread_cond_signal(&Not_Empty);
    81. printf("Producer TID 0x%x Add Task Successfully...\n",(unsigned int)pthread_self());
    82. }
    83. while(1)
    84. sleep(1);
    85. return 0;
    86. }

    运行结果:实现了简单的生产者消费者模型,生产者添加任务,消费者执行任务 

  • 相关阅读:
    前端性能优化
    Spring Framework 6.0 框架
    Java数据结构技巧
    2022年9月电子学会考级试卷真题解析(含答案和所有文档下载)
    126. SAP UI5 进阶 - JSON 模型字段里的值,显示在最终 UI5 界面上的奥秘分析
    go基础语法10问
    SaaSBase:什么是捷讯通信?
    济南槐荫吴家堡 国稻种芯·中国水稻节:山东稻出黄河大米
    修复表中的名字(首字符大写,其他小写)
    iOS实时监控与报警器
  • 原文地址:https://blog.csdn.net/Coldreams/article/details/139998981