进程和线程的多种锁机制

本文将介绍linux系统下多线程编程中,线程同步的各种方法。包括:

  1. 互斥量(mutex)
  2. 读写锁
  3. 条件变量
  4. 信号量
  5. 文件互斥

在介绍不同的线程同步的方法之前,先简单的介绍一下进程和线程的概念, 它们的优缺点,线程相关的API,读者——写者问题和哲学家就餐问题。

基础知识

1. 进程和线程

进程(process)是指在系统中正在运行的一个应用程序,是系统资源分配的基本单位,在内存 中有其完备的数据空间和代码空间,拥有完整的虚拟空间地址。一个进程所拥有的数据和变量只 属于它自己。

线程(thread)是进程内相对独立的可执行单元,所以也被称为轻量进程(lightweight processes );是操作系统进行任务调度的基本单元。它与父进程的其它线程共享该进程所拥有的全部代码 空间和全局变量,但拥有独立的堆栈(即局部变量对于线程来说是私有的)。

1.1 线程和进程的区别:

  1. 线程是进程的一部分,所以线程有的时候被称为是轻量级进程。
  2. 一个没有线程的进程是可以被看作单线程的,如果一个进程内拥有多个线程, 进程的执行过程不是一条线(线程)的,而是多条线(线程)共同完成的。
  3. 系统在运行的时候会为每个进程分配不同的内存区域,但是不会为线程分配内存(线程所使 用的资源是它所属的进程的资源),线程组只能共享资源。那就是说,除了CPU之外(线程在运 行的时候要占用CPU资源),计算机内部的软硬件资源的分配与线程无关,线程只能共享它所属 进程的资源。
  4. 与进程的控制表PCB相似,线程也有自己的控制表TCB,但是TCB中所保存的线程状态比PCB表 中少很多
  5. 进程是系统所有资源分配时候的一个基本单位,拥有一个完整的虚拟空间地址,并不依赖线 程而独立存在。

更加详细的介绍,请参考这里

1.2 线程的优点

由于以下原因,行业内广泛地在编程库和操作系统中实现线程:

  • 减少内存占用量。创建另一个线程的内存消耗量被限制为线程所需要的堆栈加上线程管理器需 要的一些簿记内存。
  • 不需要采用先进的技术来访问服务器全局数据。如果数据有可能由另一个同时运行的线程修改, 则要做的一切就是使用互斥体 保护相关段。
  • 创建线程所需要的时间大大小于创建进程所需要的时间,原因是不必复制堆部分(它可能很大)。
  • 在线程之间进行环境切换时,内核在调度器中花的时间比在过程之间进行切换花的时间少。 这给负担很重的服务器留下了更多的cpu时间处理工作。

1.3 线程的缺点

尽管线程在现代计算机中极具重要性,它们却有很多缺点:

  • 编程错误代价惨重。如果一个线程崩溃,会使得整个服务器停止。一个坏线程可能会毁坏全局 数据,导致其他线程无法工作
  • 容易产生编程错误。程序员必须不断考虑其他一些线程可能正在做引起麻烦的事情,以及如何 避免这种麻烦。需要采用额外的防范方法编制程序。
  • 线程服务器在同步漏洞方面声名狼藉,这些漏洞几乎无法在测试中进行复制,却在生产期间很 不合时宜地出现。这类漏洞发生几率之所以如此高,是由于使用共享地址空间,这会产生更高程 度的线程交互。
  • 有时候互斥体争用难以控制。如果在同一时间有太多的线程想得到相同的互斥体,就会导致过 度的环境切换,大量的CPU时间就会花在内核调度器上,因而几乎没有时间执行工作。
  • 32位系统限制为每个线程使用4G地址空间。由于所有的线程都共享相同的地址空间,理论上整 个服务器就被限制为使用4G RAM,即便实际上有更多的物理RAM也不例外。实际使用时,地址空间 会在一个小得多的限值下开始变得非常拥挤。
  • 拥挤的32位地址空间会带来另一个问题。每个线程都需要一些堆栈空间,在分配了堆栈后, 即便不使用所分配的大部分空间,服务器也会为其保留地址空间。每个新堆栈都会减少用于堆的 潜在空间。因此,即使有足够的物理内存,也不可能同时使用大型缓冲区,同时使用大量并发线 程,以及同时为每个线程提供足够的堆栈空间。

1.4 进程的优点

线程的缺点与使用多进程的优点相对应:

  • 编程错误并不致命。尽管有可能发生,但一个坏分支服务器进程并不容易中断整个服务器。
  • 编程错误发生的可能性小得多。在大多数时候,程序员只需要考虑一个线程的执行,而不用受 可能的并发侵入者的打扰。
  • 飘忽不定的漏洞少得多。如果漏洞出现一次,通常非常容易复制。由于各个分支进程有自己的 地址空间,它们之间并没有太多的交互。
  • 在32位系统中,地址空间用完的问题并不严重。

1.5 进程的缺点

  • 内存利用不够好。当子进程发生分支时,会不必要地复制大型内存程序段。
  • 需要采用特殊技术实现进程数据共享。(IPC)
  • 创建进程比创建线程需要更多的内核系统开销。对性能的一个很大的打击是需要 复制父进程的 数据段。不过,Linux 在这方面的手段是执行所谓的copy-on-write 。除非子进程或父进程修改了 父进程页,否则并不真正复制父进程页。在此之前,父子进程使用相同的页。
  • 进程之间的环境切换比线程之间的环境切换更为耗时,因为内核需要切换页,文件描述符表 及其他额外的内容信息。留给服务器执行实际工作的时间减少。

以上关于进程和线程的优缺点,都来自《深入理解mysql核心技术

2. 线程API

进程原语和线程原语的比较:

进程原语线程原语描述
forkpthread_create创建新的控制流
exitpthread_exit从现有的控制流退出
waitpidpthread_join从控制流中得到退出状态
atexitpthread_cancle_push注册在退出控制流时调用的函数
getpidpthread_self获取控制流的ID
abortpthread_cancle请求控制流的非正常退出

3. 读者-写者问题

读者————写者问题是一个用信号量实现的经典进程同步问题。在系统中,一个数据集(如文件或 记录) 被几个并发进程共享,这些线程分两类,一部分只要求进行读操作,称之为“读者”; 另一类要求写或修改操作,我们称之为“写者“。一般而言,对一个数据集,为了保证数据的完整 性、正确性,允许多个读者进程同时访问,但是不允许一个写者进程同其它任何一个进程(读者 或者写者)同时访问,而这类问题就称之为"读者-写者"问题。

读者优先的算法在操作系统相关的书籍中都有介绍,这是一种最简单的解决办法: 当没有写进 程正在访问共享数据集时,读进程可以进入访问,否则必须等待。而读者优先的算法存在"饿死 写者"线程的问题:只要有读者不断到来,写者就要持久地等待,直到所有的读者都读完且没有 新的读者到来时写者才能写数据集。而在很多情况下我们需要避免"饿死写者",故而采用写者优 先算法:

在写者优先算法中,我们要实现的目标是:

1.要让读者与写者之间、以及写者与写者之问要互斥地访同数据集; 2.在无写进程到来时各读者可同时访问数据集; 3.在读者和写者都等待时访问时写者优先.

在实现写者优先时,增加一个互斥量,用于写者优先。当有写者来时,就不在允许读者去读取数据, 等待正在读数据的读者完成以后开始写数据,以此实现写者优先。

4. 哲学家就餐问题

哲学家就餐问题可以这样表述,假设有五位哲学家围坐在一张圆形餐桌旁,做以下两件事 情之一:吃饭,或者思考。吃东西的时候,他们就停止思考,思考的时候也停止吃东西。餐桌中 间有一大碗意大利面,每两个哲学家之间有一只餐叉。因为用一只餐叉很难吃到意大利面,所以 假设哲学家必须用两只餐叉吃东西。他们只能使用自己左右手边的那两只餐叉。哲学家就餐问题 有时也用米饭和筷子而不是意大利面和餐叉来描述,因为很明显,吃米饭必须用两根筷子。

多线程编程示例

5 互斥量(mutex)

互斥锁创建

有两种方法创建互斥锁,静态方式和动态方式。POSIX定义了一个宏PTHREAD_MUTEX_INITIALIZER 来静态初始化互斥锁,方法如下:

  1. pthread_mutex_t mutex=PTHREAD_MUTEX_INITIALIZER;在LinuxThreads实现中, pthread_mutex_t是一个结构,而PTHREAD_MUTEX_INITIALIZER则是一个结构常量。

  2. 动态方式是采用pthread_mutex_init()函数来初始化互斥锁,API定义如下:

     
    1. int pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t

    2. *mutexattr)

    其中mutexattr用于指定互斥锁属性(见下),如果为NULL则使用缺省属性。 pthread_mutex_destroy ()用于注销一个互斥锁,API定义如下:

     int pthread_mutex_destroy(pthread_mutex_t *mutex)

锁操作

锁操作主要包括加锁pthread_mutex_lock()、解锁pthread_mutex_unlock()和测试加锁 pthread_mutex_trylock()三个,不论哪种类型的锁,都不可能被两个不同的线程同时得到, 而必须等待解锁。对于普通锁和适应锁类型,解锁者可以是同进程内任何线程; 而检错锁则必须由加锁者解锁才有效,否则返回EPERM;对于嵌套锁,文档和实现要求必须由 加锁者解锁,但实验结果表明并没有这种限制,这个不同目前还没有得到解释。在同一进程中 的线程,如果加锁后没有解锁,则任何其他线程都无法再获得锁。

 
  1. int pthread_mutex_lock(pthread_mutex_t *mutex)

  2. int pthread_mutex_unlock(pthread_mutex_t *mutex)

  3. int pthread_mutex_trylock(pthread_mutex_t *mutex)

pthread_mutex_trylock() 语义与pthread_mutex_lock()类似,不同的是在锁已经被占据时返回 EBUSY而不是挂起等待。

互斥量实现读者写者问题

 
  1. #include <pthread.h>

  2. #include <signal.h>

  3. #include "apue.h"

  4. #define N 5 //No. of reader

  5. #define M 5 //No. of reading and writing

  6.  
  7. pthread_mutex_t rd = PTHREAD_MUTEX_INITIALIZER; // it's mean reader can reading

  8. pthread_mutex_t wr = PTHREAD_MUTEX_INITIALIZER; //it's mean writer can writing

  9.  
  10. int readCount = 0;

  11.  
  12. void* reader(void *arg)

  13. {

  14. int n = M;

  15. int id = (int)arg;

  16. while (n--)

  17. {

  18. sleep( rand() % 3);

  19. pthread_mutex_lock(&rd);

  20. readCount++;

  21. if( readCount == 1)

  22. {

  23. pthread_mutex_lock(&wr);

  24. }

  25. pthread_mutex_unlock(&rd);

  26.  
  27. printf("reader %d is reading\n", id);

  28. sleep( rand() % 3);

  29.  
  30. pthread_mutex_lock(&rd);

  31. readCount--;

  32. if (readCount == 0)

  33. {

  34. pthread_mutex_unlock(&wr);

  35. }

  36. pthread_mutex_unlock(&rd);

  37. printf("reader %d is leaving\n", id);

  38. }

  39. printf("----reader %d has done----\n", (int)arg);

  40. }

  41.  
  42. void* writer(void *arg)

  43. {

  44. int n = M;

  45. while (n--)

  46. {

  47. sleep( rand() % 3);

  48. pthread_mutex_lock(&wr);

  49. printf("\twriter is writing\n");

  50. sleep( rand() % 3);

  51. pthread_mutex_unlock(&wr);

  52. printf("\twriter is leaving\n");

  53. }

  54. printf("----writer has done----\n");

  55.  
  56. }

  57.  
  58.  
  59. int main(int argc, const char *argv[])

  60. {

  61. int err;

  62. pthread_t tid[N], writerTid;

  63. int i;

  64.  
  65.  
  66. err = pthread_create(&writerTid, NULL, writer, (void *)NULL);

  67. if (err != 0)

  68. {

  69. err_quit("can't create process for writer");

  70. }

  71.  
  72. for (i = 0; i < N; i++)

  73. {

  74. err = pthread_create(&tid[i], NULL, reader, (void *)(i+1));

  75. if (err != 0)

  76. {

  77. err_quit("can't create process for reader");

  78. }

  79. }

  80. pause();

  81. return 0;

  82. }

对于使用了多线程的程序,编译方法如下:

g++ reader_writer.c -l pthread -o a.out

互斥量实现读者写者问题(写者优先)

 
  1. #include <pthread.h>

  2. #include <signal.h>

  3. #include "apue.h"

  4. #define N 5 //No. of reader

  5. #define M 5 //No. of reading and writing

  6.  
  7. pthread_mutex_t rd = PTHREAD_MUTEX_INITIALIZER; // it's mean reader can reading

  8. pthread_mutex_t wr = PTHREAD_MUTEX_INITIALIZER; // it's mean writer can writing

  9. pthread_mutex_t priority = PTHREAD_MUTEX_INITIALIZER; // it's mean writer can writing

  10.  
  11. int readCount = 0;

  12.  
  13. void* reader(void *arg)

  14. {

  15. int n = M;

  16. int id = (int)arg;

  17. while (n--)

  18. {

  19. sleep( rand() % 3);

  20.  
  21. pthread_mutex_lock(&priority);

  22. pthread_mutex_lock(&rd);

  23. readCount++;

  24. if( readCount == 1)

  25. { //first reader

  26. pthread_mutex_lock(&wr);

  27. }

  28. pthread_mutex_unlock(&rd);

  29. pthread_mutex_unlock(&priority);

  30.  
  31. printf("reader %d is reading\n", id);

  32. sleep( rand() % 3);

  33.  
  34. pthread_mutex_lock(&rd);

  35. readCount--;

  36. if (readCount == 0)

  37. { //last reader

  38. pthread_mutex_unlock(&wr);

  39. }

  40. pthread_mutex_unlock(&rd);

  41. printf("reader %d is leaving\n", id);

  42. }

  43. printf("----reader %d has done----\n", (int)arg);

  44. }

  45.  
  46. void* writer(void *arg)

  47. {

  48. int n = M;

  49. while (n--)

  50. {

  51. sleep( rand() % 4);

  52. pthread_mutex_lock(&priority);

  53. pthread_mutex_lock(&wr);

  54. printf("\twriter is writing\n");

  55. sleep( rand() % 4);

  56. pthread_mutex_unlock(&wr);

  57. pthread_mutex_unlock(&priority);

  58. printf("\twriter is leaving\n");

  59. }

  60. printf("----writer has done----\n");

  61.  
  62. }

  63.  
  64. int main(int argc, const char *argv[])

  65. {

  66. int err;

  67. pthread_t tid[N], writer_tid;

  68. int i;

  69.  
  70. for (i = 0; i < N; i++)

  71. {

  72. err = pthread_create(&tid[i], NULL, reader, (void *)(i+1));

  73. if (err != 0)

  74. {

  75. err_quit("can't create process for reader");

  76. }

  77. }

  78.  
  79. err = pthread_create(&writer_tid, NULL, writer, (void *)NULL);

  80. if (err != 0)

  81. {

  82. err_quit("can't create process for writer");

  83. }

  84. pause();

  85. return 0;

  86. }

6 读写锁

读写锁适合于对数据结构的读次数比写次数多得多的情况.因为,读模式锁定时可以共享,以写 模式锁住时意味着独占,所以读写锁又叫共享-独占锁.

初始化和销毁:

 
  1. #include <pthread.h>

  2. int pthread_rwlock_init(pthread_rwlock_t *restrict rwlock, const

  3. pthread_rwlockattr_t *restrict attr);

  4. int pthread_rwlock_destroy(pthread_rwlock_t *rwlock);

成功则返回0,出错则返回错误编号. 同互斥量以上,在释放读写锁占用的内存之前,需要先通过 pthread_rwlock_destroy对读写锁进行清理工作, 释放由init分配的资源.

读和写:

 
  1. #include <pthread.h>

  2. int pthread_rwlock_rdlock(pthread_rwlock_t *rwlock);

  3. int pthread_rwlock_wrlock(pthread_rwlock_t *rwlock);

  4. int pthread_rwlock_unlock(pthread_rwlock_t *rwlock);

成功则返回0,出错则返回错误编号.这3个函数分别实现获取读锁,获取写锁和释放锁的操作.获 取锁的两个函数是阻塞操作,同样,非阻塞的函数为:

 
  1. #include <pthread.h>

  2. int pthread_rwlock_tryrdlock(pthread_rwlock_t *rwlock);

  3. int pthread_rwlock_trywrlock(pthread_rwlock_t *rwlock);

成功则返回0,出错则返回错误编号.非阻塞的获取锁操作,如果可以获取则返回0,否则返回 错误的EBUSY.

 
  1. #include <pthread.h>

  2. #include <signal.h>

  3. #include "apue.h"

  4. #define N 5 //No. of reader

  5. #define M 5 //No. of reading and writing

  6.  
  7. pthread_rwlock_t lock; //it's mean writer can writing

  8.  
  9. int readCount = 0;

  10.  
  11. void* reader(void *arg)

  12. {

  13. int n = M;

  14. int id = (int)arg;

  15. while (n--)

  16. {

  17. sleep( rand() % 3);

  18. pthread_rwlock_rdlock(&lock);

  19. printf("reader %d is reading\n", id);

  20. sleep( rand() % 3);

  21.  
  22. pthread_rwlock_unlock(&lock);

  23. printf("reader %d is leaving\n", id);

  24. }

  25. printf("----reader %d has done----\n", (int)arg);

  26. }

  27.  
  28. void* writer(void *arg)

  29. {

  30. int n = M;

  31. while (n--)

  32. {

  33. sleep( rand() % 3);

  34. pthread_rwlock_wrlock(&lock);

  35. printf("\twriter is writing\n");

  36. sleep( rand() % 3);

  37. pthread_rwlock_unlock(&lock);

  38. printf("\twriter is leaving\n");

  39. }

  40. printf("----writer has done----\n");

  41. }

  42.  
  43. int main(int argc, const char *argv[])

  44. {

  45. int err;

  46. pthread_t tid[N], writerTid;

  47. int i;

  48.  
  49. err = pthread_create(&writerTid, NULL, writer, (void *)NULL);

  50. if (err != 0)

  51. {

  52. err_quit("can't create process for writer");

  53.  
  54. }

  55.  
  56. pthread_rwlock_init(&lock, NULL);

  57. for (i = 0; i < N; i++)

  58. {

  59. err = pthread_create(&tid[i], NULL, reader, (void *)(i+1));

  60. if (err != 0)

  61. {

  62. err_quit("can't create process for reader");

  63. }

  64. }

  65. pause();

  66. pthread_rwlock_destroy(&lock);

  67. return 0;

  68. }

7 条件变量

条件变量参考这里

与互斥锁不同,条件变量是用来等待而不是用来上锁的。条件变量用来自动阻塞一个线程,直 到某特殊情况发生为止。通常条件变量和互斥锁同时使用。

条件变量使我们可以睡眠等待某种条件出现。条件变量是利用线程间共享的全局变量进行同步 的一种机制,主要包括两个动作:一个线程等待"条件变量的条件成立"而挂起;另一个线程使 "条件成立"(给出条件成立信号)。

条件的检测是在互斥锁的保护下进行的。如果一个条件为假,一个线程自动阻塞,并释放等待 状态改变的互斥锁。如果另一个线程改变了条件,它发信号给关联的条件变量,唤醒一个或多 个等待它的线程,重新获得互斥锁,重新评价条件。如果两进程共享可读写的内存,条件变量 可以被用来实现这两进程间的线程同步。

使用条件变量之前要先进行初始化。可以在单个语句中生成和初始化一个条件变量如: pthread_cond_t my_condition=PTHREAD_COND_INITIALIZER;(用于进程间线程的通信)。 可以利用函数pthread_cond_init动态初始化。

条件变量分为两部分:条件和变量.条件本身是由互斥量保护的.线程在改变条件状态前先要锁住 互斥量.它利用线程间共享的全局变量进行同步的一种机制。

相关的函数如下:

 
  1. int pthread_cond_init(pthread_cond_t *cond,pthread_condattr_t *cond_attr);

  2. int pthread_cond_wait(pthread_cond_t *cond,pthread_mutex_t *mutex);

  3. int pthread_cond_timewait(pthread_cond_t *cond,pthread_mutex *mutex,const

  4. timespec *abstime);

  5. int pthread_cond_destroy(pthread_cond_t *cond);

  6. int pthread_cond_signal(pthread_cond_t *cond);

  7. int pthread_cond_broadcast(pthread_cond_t *cond); //解除所有线程的阻塞

简要说明:

  1. 初始化.init()或者pthread_cond_t cond=PTHREAD_COND_INITIALIER;属性置为NULL
  2. 等待条件成立.pthread_wait,pthread_timewait.wait()释放锁,并阻塞等待条件变量为真 timewait()设置等待时间,仍未signal,返回ETIMEOUT(加锁保证只有一个线程wait)
  3. 激活条件变量:pthread_cond_signal,pthread_cond_broadcast(激活所有等待线程)
  4. 清除条件变量:destroy;无线程等待,否则返回EBUSY

详细说明

初始化:

条件变量采用的数据类型是pthread_cond_t, 在使用之前必须要进行初始化, 这包括两种方式:

静态: 可以把常量PTHREAD_COND_INITIALIZER给静态分配的条件变量. 动态: pthread_cond_init函数, 是释放动态条件变量的内存空间之前, 要用 pthread_cond_destroy对其进行清理.

 
  1. #include <pthread.h>

  2. int pthread_cond_init(pthread_cond_t *restrict cond, pthread_condattr_t *restrict attr);

  3. int pthread_cond_destroy(pthread_cond_t *cond);

成功则返回0, 出错则返回错误编号.

当pthread_cond_init的attr参数为NULL时,会创建一个默认属性的条件变量;非默认情况以后讨论.

等待条件:

 
  1. #include <pthread.h>

  2. int pthread_cond_wait(pthread_cond_t *restrict cond, pthread_mutex_t

  3. *restric mutex);

  4. int pthread_cond_timedwait(pthread_cond_t *restrict cond, pthread_mutex_t

  5. *restrict mutex, const struct timespec *restrict timeout);

成功则返回0,出错则返回错误编号.这两个函数分别是阻塞等待和超时等待.

等待条件函数等待条件变为真,传递给pthread_cond_wait的互斥量对条件进行保护,调用者把锁 住的互斥量传递给函数.函数把调用线程放到等待条件的线程列表上,然后对互斥量解锁,这两个 操作是原子的. 这样便关闭了条件检查和线程进入休眠状态等待条件改变这两个操作之间的时 间通道,这样线程就不会错过条件的任何变化.

当pthread_cond_wait返回时, 互斥量再次被锁住.

  1. 通知条件:

    #include <pthread.h> int pthread_cond_signal(pthread_cond_t cond); int pthread_cond_broadcast(pthread_cond_t cond);

成功则返回0, 出错则返回错误编号.

这两个函数用于通知线程条件已经满足. 调用这两个函数, 也称向线程或条件发送信号. 必须注意, 一定要在改变条件状态以后再给线程发送信号.

示例程序

 
  1. #include <stdio.h>

  2. #include <pthread.h>

  3. pthread_mutex_t mutex;

  4. pthread_cond_t cond;

  5. void *thread1(void *arg)

  6. {

  7.  
  8. pthread_cleanup_push(pthread_mutex_unlock, &mutex);

  9.  
  10. //提供函数回调保护

  11. while (1) {

  12.  
  13. printf("thread1 is running\n");

  14.  
  15. pthread_mutex_lock(&mutex);

  16.  
  17. pthread_cond_wait(&cond, &mutex);

  18.  
  19. printf("thread1 applied the condition\n");

  20.  
  21. pthread_mutex_unlock(&mutex);

  22.  
  23. sleep(4);

  24.  
  25. }

  26.  
  27. pthread_cleanup_pop(0);

  28.  
  29. }

  30.  
  31.  
  32. void *thread2(void *arg)

  33. {

  34.  
  35. while (1) {

  36.  
  37. printf("thread2 is running\n");

  38.  
  39. pthread_mutex_lock(&mutex);

  40.  
  41. pthread_cond_wait(&cond, &mutex);

  42.  
  43. printf("thread2 applied the condition\n");

  44.  
  45. pthread_mutex_unlock(&mutex);

  46.  
  47. sleep(1);

  48.  
  49. }

  50. }

  51.  
  52.  
  53.  
  54. int main()

  55. {

  56.  
  57. pthread_t thid1, thid2;

  58.  
  59. printf("condition variable study!\n");

  60.  
  61. pthread_mutex_init(&mutex, NULL);

  62.  
  63. pthread_cond_init(&cond, NULL);

  64.  
  65. pthread_create(&thid1, NULL, (void *) thread1, NULL);

  66.  
  67. pthread_create(&thid2, NULL, (void *) thread2, NULL);

  68.  
  69. do {

  70.  
  71. pthread_cond_signal(&cond);

  72.  
  73. } while (1);

  74.  
  75. sleep(20);

  76.  
  77. pthread_exit(0);

  78.  
  79. return 0;

  80.  
  81. }

条件变量与互斥锁、信号量的区别

  1. 互斥锁必须总是由给它上锁的线程解锁,信号量的挂出即不必由执行过它的等待操作的同一 进程执行。一个线程可以等待某个给定信号灯,而另一个线程可以挂出该信号灯。
  2. 互斥锁要么锁住,要么被解开(二值状态,类型二值信号量)。
  3. 由于信号量有一个与之关联的状态(它的计数值),信号量挂出操作总是被记住。然而当向 一个条件变量发送信号时,如果没有线程等待在该条件变量上,那么该信号将丢失。
  4. 互斥锁是为了上锁而设计的,条件变量是为了等待而设计的,信号灯即可用于上锁,也可用 于等待,因而可能导致更多的开销和更高的复杂性。

8 信号量

信号量(semaphore)简单好理解,不知道它有什么缺点,在《unix 环境高级编程》中居然没有讲。我们大学课堂,上操作系统,各种PV操作,其实就是在操作信号量。

信号量的具体使用方法,请

man sem_init

相关的几个系统调用:

 
  1. sem_init

  2. sem_wait

  3. sem_trywait

  4. sem_post

  5. sem_getvalue

  6. sem_destory

下面来看一个信号量解决哲学家就餐问题,在这里semaphore 初始为1,用法和互斥量没有什么区别。

 
  1. #include <semaphore.h>

  2. #include <pthread.h>

  3. #include "apue.h"

  4.  
  5. #define N 5 // No. of philosopher

  6. #define M 5 // times of eating

  7. sem_t forks[N];

  8.  
  9. void * thr_philosopher( void *arg);

  10. int main(int argc, char* argv[])

  11. {

  12. int i = 0;

  13. int err;

  14. pthread_t tid[N];

  15. void *tret;

  16. //initilize semaphore

  17. for (i = 0; i < N; i++)

  18. {

  19. if(sem_init(&forks[i], 0, 1) != 0)

  20. {

  21. err_quit("init forks error");

  22. }

  23. }

  24. //create thread

  25. for (i = 0; i < N; i++)

  26. {

  27. err = pthread_create(&tid[i], NULL, thr_philosopher, (void *)i);

  28. if (err != 0)

  29. {

  30. err_quit("can't create thread %d: %s\n", i + 1, strerror(err));

  31. }

  32. }

  33.  
  34. //get the return value

  35. for (i = 0; i < N; i++)

  36. {

  37. err = pthread_join(tid[i], &tret);

  38. if (err != 0)

  39. {

  40. err_quit("can't join with philosopher %d : %s\n", i + 1,

  41. strerror(err));

  42. }

  43. printf("-------------------philosopher %d has done-------------------\n", (int)tret);

  44. }

  45.  
  46. // delete the source of semaphore

  47. for (i = 0; i < N; i++)

  48. {

  49. err = sem_destroy(&forks[i]);

  50. if (err != 0)

  51. {

  52. err_sys("can't destory semaphore");

  53. }

  54. }

  55. exit(0);

  56. }

  57.  
  58. void * thr_philosopher( void *arg)

  59. {

  60.  
  61. /*

  62. * here cann't judge arg == NULL

  63. * because (void *)0 will lead to arg = NULL

  64. */

  65. int n = M;

  66. int i = 0;

  67. i = (int)arg;

  68. while ( n-- )

  69. {

  70. sleep(1);

  71. if ( i == N - 1)

  72. {

  73. sem_wait(&forks[0]);

  74. sem_wait(&forks[i]);

  75. }

  76. else

  77. {

  78. sem_wait(&forks[i]);

  79. sem_wait(&forks[i + 1]);

  80. }

  81. printf("philosopher %d is eating\n", i + 1);

  82. if ( i == N - 1)

  83. {

  84. sem_post(&forks[0]);

  85. sem_post(&forks[i]);

  86. }

  87. else

  88. {

  89. sem_post(&forks[i]);

  90. sem_post(&forks[i + 1]);

  91. }

  92.  
  93. }

  94.  
  95. return ((void*)i);

  96. }

9 文件互斥

文件互斥并不是操作系统提供的一组API,而是使用了一点小技巧,我们可以通过linux下文件互 斥地打开,实现线程/进程互斥的访问资源,以此实现多线程编程。

值得注意的是,文件互斥的方式不但适用于多线程编程,还能实现多进程之间的交互。

文件互斥还有一个妙用--保证一个系统中只有一个实例,请参考这里

新建lock.h 文件,内容入下:

 
  1. #include <sys/types.h>

  2. #include <sys/stat.h>

  3. #include <fcntl.h>

  4. #include <unistd.h>

  5. void initlock(const char *lockfile);

  6. void lock(const char *lockfile);

  7. void unlock(const char *lockfile);

新建lock.c 文件,内容入下:

 
  1. #include <sys/types.h>

  2. #include <sys/stat.h>

  3. #include <fcntl.h>

  4. #include <unistd.h>

  5.  
  6. void initlock(const char *lockfile)

  7. {

  8. int i;

  9. unlink(lockfile);

  10. }

  11.  
  12. void lock(const char *lockfile)

  13. {

  14.  
  15. int fd;

  16. while ( (fd = open(lockfile, O_RDONLY | O_CREAT | O_EXCL)) < 0)

  17. sleep(1);

  18. close(fd);

  19. }

  20.  
  21. void unlock(const char *lockfile)

  22. {

  23. unlink(lockfile);

  24. }

新建main.c 文件,内容如下:

 
  1. #include <sys/wait.h>

  2. #include <stdio.h>

  3. #include <stdlib.h>

  4. #include <pthread.h>

  5. #include "apue.h"

  6. #include "lock.h"

  7.  
  8. #define N 5 // No. of philosopher

  9. #define M 3 // No. of eating

  10. static char* forks[] = {"fork0", "fork1", "fork2", "fork3", "fork4"};

  11.  
  12. void takeFork( int i )

  13. {

  14. if ( i == N - 1 )

  15. {

  16. lock(forks[0]);

  17. printf("philosopher %d: takefork 0\n", i + 1 );

  18. lock(forks[i]);

  19. printf("philosopher %d: takefork %d\n", i + 1, i );

  20. }

  21. else

  22. {

  23. lock(forks[i]);

  24. printf("philosopher %d: takefork %d\n", i + 1, i );

  25. lock(forks[i+1]);

  26. printf("philosopher %d: takefork %d\n", i + 1, i+1 );

  27. }

  28. }

  29.  
  30. void eating(int i, int nsecs)

  31. {

  32. printf("\tphilosopher %d: eat %d s\n", i + 1, nsecs );

  33. sleep(nsecs);

  34. }

  35.  
  36. void thinking(int i, int nsecs)

  37. {

  38. printf("philosopher %d: think %d sec\n", i + 1, nsecs );

  39. sleep(nsecs);

  40. }

  41.  
  42. void putFork( int i )

  43. {

  44. if ( i == N - 1 )

  45. {

  46. unlock(forks[0]);

  47. unlock(forks[i]);

  48. }

  49. else

  50. {

  51. unlock(forks[i]);

  52. unlock(forks[i+1]);

  53. }

  54. }

  55.  
  56. void* philosopher(void *arg)

  57. {

  58. int i = (int)arg;

  59. // printf("philosopher %d : pid = %d is running", i + 1, getpid());

  60. int m = M;

  61. int nsecs;

  62. srand( time(0) );

  63. while ( m-- )

  64. {

  65. nsecs = rand() % 5;

  66. thinking(i, nsecs);

  67. takeFork(i);

  68. nsecs = rand() % 5;

  69. eating(i, nsecs);

  70. putFork(i);

  71. }

  72. printf("====================philosopher %d : is\

  73. successful===================\n", i + 1 );

  74. }

  75.  
  76. int main(int argc, char* argv[])

  77. {

  78.  
  79. int i;

  80. int err;

  81. pthread_t tid[N];

  82.  
  83. for (i = 0; i < sizeof(forks) / sizeof(forks[0]); i++)

  84. {

  85. initlock(forks[i]);

  86. }

  87.  
  88. for (i = 0; i < N; i++)

  89. {

  90. err = pthread_create(&tid[i], NULL, philosopher, (void *)i);

  91. if (err != 0)

  92. {

  93. err_quit("can't create process for philosopher");

  94. }

  95. }

  96. pause();

  97. }

最后,我们来看一个使用文件互斥实现进程之间的交互的例子,其中,lock.h 和 lock.c 请参考上面的实现。main.c 的实现如下:

 
  1. #include <sys/wait.h>

  2. #include <sys/wait.h>

  3. #include <stdio.h>

  4. #include "apue.h"

  5. #include "lock.h"

  6.  
  7. #define N 5 // No. of philosopher

  8. #define M 3 // No. of eating

  9. static char* forks[] = {"fork0", "fork1", "fork2", "fork3", "fork4"};

  10.  
  11. void takeFork( int i )

  12. {

  13. if ( i == N - 1 )

  14. {

  15. lock(forks[0]);

  16. printf("philosopher %d: takefork 0\n", i + 1 );

  17. lock(forks[i]);

  18. printf("philosopher %d: takefork %d\n", i + 1, i );

  19. }

  20. else

  21. {

  22. lock(forks[i]);

  23. printf("philosopher %d: takefork %d\n", i + 1, i );

  24. lock(forks[i+1]);

  25. printf("philosopher %d: takefork %d\n", i + 1, i+1 );

  26. }

  27. }

  28.  
  29. void eating(int i, int nsecs)

  30. {

  31. printf("philosopher %d: eat %d sec\n", i + 1, nsecs );

  32. sleep(nsecs);

  33. }

  34.  
  35. void thinking(int i, int nsecs)

  36. {

  37. printf("philosopher %d: think %d sec\n", i + 1, nsecs );

  38. sleep(nsecs);

  39. }

  40.  
  41. void putFork( int i )

  42. {

  43. if ( i == N - 1 )

  44. {

  45. unlock(forks[0]);

  46. unlock(forks[i]);

  47. }

  48. else

  49. {

  50. unlock(forks[i]);

  51. unlock(forks[i+1]);

  52. }

  53. }

  54.  
  55. void philosopher(int i)

  56. {

  57. printf("philosopher %d : pid = %d\n is running", i + 1, getpid());

  58. int m = M;

  59. int nsecs;

  60. srand( time(0) );

  61. while ( m-- )

  62. {

  63. nsecs = rand() % 5;

  64. thinking(i, nsecs);

  65. takeFork(i);

  66. nsecs = rand() % 5;

  67. eating(i, nsecs);

  68. putFork(i);

  69. }

  70. printf("==============================philosopher %d : is\

  71. successful=============================\n", i + 1 );

  72. }

  73.  
  74. int main(int argc, char* argv[])

  75. {

  76. pid_t pid;

  77. int i;

  78.  
  79. for ( i = 0; i < N; i++ )

  80. {

  81. pid = fork();

  82. if (pid == 0 || pid == -1)

  83. {

  84. break;

  85. }

  86. }

  87.  
  88. if ( pid == 0 )

  89. {

  90. philosopher(i);

  91. }

  92. else if ( pid < 0 )

  93. {

  94. perror("fork error");

  95. }

  96. else

  97. {

  98. waitpid(pid, 0, 0);

  99. }

  100.  
  101. exit(0);

  102. }

如果你是新手,可能对下面这几行代码不是很理解,请参考酷壳网的《一个fork的面试题》。

 
  1. for ( i = 0; i < N; i++ )

  2. {

  3. pid = fork();

  4. if (pid == 0 || pid == -1)

  5. {

  6. break;

  7. }

  8. }

完。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值