当前位置:   article > 正文

Linux之线程同步

Linux之线程同步

目录

一、问题引入

二、实现线程同步的方案——条件变量

1、常用接口:

2、使用示例


一、问题引入

我们再次看看上次讲到的多线程抢票的代码:这次我们让一个线程抢完票之后不去做任何事。

  1. #include <iostream>
  2. #include <unistd.h>
  3. #include <cstring>
  4. #include <time.h>
  5. #include <pthread.h>
  6. using namespace std;
  7. #define THREAD_NUM 5
  8. class threaddata
  9. {
  10. public:
  11. threaddata(const string &s, pthread_mutex_t *m)
  12. : name(s), mtx(m)
  13. {}
  14. public:
  15. string name;
  16. pthread_mutex_t *mtx;
  17. };
  18. int ticket = 100;
  19. void *getticket(void *arg)
  20. {
  21. threaddata *td = (threaddata *)arg;
  22. while (true)
  23. {
  24. pthread_mutex_lock(td->mtx);
  25. if (ticket > 0)
  26. {
  27. usleep(rand() % 10000);
  28. cout << td->name << ":"
  29. << " " << ticket << endl;
  30. ticket--;
  31. pthread_mutex_unlock(td->mtx);
  32. }
  33. else
  34. {
  35. pthread_mutex_unlock(td->mtx);
  36. break;
  37. }
  38. }
  39. delete td;
  40. return nullptr;
  41. }
  42. int main()
  43. {
  44. pthread_mutex_t mtx;
  45. pthread_mutex_init(&mtx, nullptr);
  46. pthread_t t[THREAD_NUM];
  47. for (int i = 0; i < THREAD_NUM; i++)
  48. {
  49. string name = "thread ";
  50. name += to_string(i + 1);
  51. threaddata *td = new threaddata(name, &mtx);
  52. pthread_create(t + i, nullptr, getticket, (void *)td);
  53. }
  54. for (int i = 0; i < THREAD_NUM; i++)
  55. pthread_join(t[i], nullptr);
  56. pthread_mutex_destroy(&mtx);
  57. return 0;
  58. }

运行结果:

我们这就发现了一个问题,对于抢票系统,我们看到的是只有一个线程5在一直连续抢票,没有其他的线程。这很不合理。

这是因为如果个别线程的竞争力特别强,每次都能够申请到锁,但申请到锁之后什么也不做,所以在我们看来这个线程就一直在申请锁和释放锁,那么它就可以一直抢票。这就可能导致其他线程长时间竞争不到锁,造成了其他线程的饥饿问题(无法抢票)。虽然,你是拿到锁后再去访问临界资源,并且最后还释放了锁,由于竞争能力太强,可以一直拿到锁,这没有错,但这不合理。

为了解决这个问题,我们增加一个限制:当一个线程释放锁后,这个线程不能立马再次申请锁,该线程必须排到这个锁的资源等待队列的最后。这样,我们就有了线程同步:我们在保证数据安全的情况下让这些线程按照一定的顺序进行临界资源的访问,这就是线程同步。

竞态条件:因为时序问题,而导致程序异常,我们称为竞态条件。

二、实现线程同步的方案——条件变量

当一个线程互斥地访问某个变量时,它可能发现在其他线程改变状态之前,它什么也做不了

例如一个线程访问队列时,发现队列为空,它只能等待,直到其他线程将一个节点添加到队列中。这种情况就需要用到条件变量

1、常用接口:

1、条件变量的定义和初始化

  1. NAME
  2. pthread_cond_destroy, pthread_cond_init - destroy and initialize condition variables
  3. SYNOPSIS
  4. #include <pthread.h>
  5. //销毁
  6. int pthread_cond_destroy(pthread_cond_t *cond);
  7. //初始化
  8. int pthread_cond_init(pthread_cond_t *restrict cond,
  9. const pthread_condattr_t *restrict attr);
  10. //全局和静态变量初始化
  11. pthread_cond_t cond = PTHREAD_COND_INITIALIZER;

2、线程等待临界资源: 

pthread_cond_wait 功能:一就是让线程在特定的条件变量下等待,二就是让线程在等待时释放对应的互斥锁。当线程被唤醒时,该函数会帮助我们线程获取锁。

  1. #include <pthread.h>
  2. //特定时间阻塞等待
  3. int pthread_cond_timedwait(pthread_cond_t *restrict cond,
  4. pthread_mutex_t *restrict mutex,
  5. const struct timespec *restrict abstime);
  6. //等待
  7. int pthread_cond_wait(pthread_cond_t *restrict cond,
  8. pthread_mutex_t *restrict mutex);

 3、唤醒线程去访问临界资源

  1. #include <pthread.h>
  2. // 唤醒所有等待的线程
  3. int pthread_cond_broadcast(pthread_cond_t *cond);
  4. // 唤醒一个线程
  5. int pthread_cond_signal(pthread_cond_t *cond);

注:1、条件变量通常需要配合互斥锁一起使用。

2、条件变量的使用:一个线程等待条件变量的条件成立而被挂起;另一个线程使条件成立后唤醒等待的线程。

3、等待的时候往往是在临界区内等待的。(加锁与解锁之间的区域进行等待)

4、线程被唤醒,是在之前进行等待的地方被唤醒。

2、使用示例

有了线程同步,我们就可以改进我们之前的抢票系统的代码:

  1. #include <iostream>
  2. #include <string>
  3. #include <time.h>
  4. #include <unistd.h>
  5. #include <pthread.h>
  6. using namespace std;
  7. #define THREADNUM 3
  8. typedef void *(*func)(void *argc);
  9. class threaddata
  10. {
  11. public:
  12. threaddata(pthread_mutex_t *mtx, pthread_cond_t *cond, const string &name)
  13. : mtx_(mtx), cond_(cond), name_(name)
  14. {}
  15. public:
  16. pthread_mutex_t *mtx_;
  17. pthread_cond_t *cond_;
  18. string name_;
  19. };
  20. int ticket = 100;
  21. void *getticket(void *arg)
  22. {
  23. threaddata *td = (threaddata *)arg;
  24. while (true)
  25. {
  26. pthread_mutex_lock(td->mtx_);
  27. pthread_cond_wait(td->cond_, td->mtx_); // 在加锁和解锁之间进行等待
  28. if (ticket > 0)
  29. {
  30. usleep(rand() % 10000);
  31. cout << td->name_ << ":"
  32. << " " << ticket << endl;
  33. ticket--;
  34. pthread_mutex_unlock(td->mtx_);
  35. }
  36. else
  37. {
  38. pthread_mutex_unlock(td->mtx_);
  39. break;
  40. }
  41. }
  42. delete td;
  43. return nullptr;
  44. }
  45. void *fun1(void *arg)
  46. {
  47. threaddata *td = (threaddata *)arg;
  48. while (true)
  49. {
  50. getticket((void *)td);
  51. sleep(1);
  52. }
  53. }
  54. void *fun2(void *arg)
  55. {
  56. threaddata *td = (threaddata *)arg;
  57. while (true)
  58. {
  59. getticket((void *)td);
  60. sleep(1);
  61. }
  62. }
  63. void *fun3(void *arg)
  64. {
  65. threaddata *td = (threaddata *)arg;
  66. while (true)
  67. {
  68. getticket((void *)td);
  69. sleep(1);
  70. }
  71. }
  72. int main()
  73. {
  74. srand((unsigned long)time(nullptr) ^ getpid() ^ 433);
  75. pthread_mutex_t mtx;
  76. pthread_cond_t cond;
  77. pthread_mutex_init(&mtx, nullptr);
  78. pthread_cond_init(&cond, nullptr);
  79. pthread_t t[THREADNUM];
  80. func fun[THREADNUM] = {fun1, fun2, fun3};
  81. for (int i = 0; i < THREADNUM; i++)
  82. {
  83. string name = "thread ";
  84. name += to_string(i + 1);
  85. threaddata *td = new threaddata(&mtx, &cond, name);
  86. pthread_create(t + i, nullptr, fun[i], (void *)td);
  87. }
  88. sleep(5);
  89. while (true)
  90. {
  91. pthread_cond_signal(&cond);
  92. sleep(1);
  93. }
  94. for (int i = 0; i < THREADNUM; i++)
  95. pthread_join(t[i], nullptr);
  96. pthread_mutex_destroy(&mtx);
  97. pthread_cond_destroy(&cond);
  98. return 0;
  99. }

如果我们每次都想将在该条件变量下等待的所有线程进行唤醒,可以将代码中的pthread_cond_signal函数改为pthread_cond_broadcast函数。 

此时我们会发现唤醒这三个线程时具有明显的顺序性,因为这些线程启动时默认都会在该条件变量下去等待,而我们每次都唤醒的是在当前条件变量下等待的头部线程,当该线程执行完代码后会继续排到等待队列的尾部进行等待。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/363204
推荐阅读
相关标签
  

闽ICP备14008679号