pthread_mutex_lock 同步问题
pthread_mutex_lock issue in synchronization
我一直在编写使用 C 中的 pthread 库的代码。该代码执行以下操作:
- 主要创建两个线程,每个线程都有自己的线程例程(函数)
- 一个线程(线程1)生成一个随机数赋给一个全局变量x
- 然后另一个线程(线程2)基本上打印全局变量的值
- 这个生成并打印x的随机值的操作重复5次
预期输出:
generator thread >> x = 5
printer thread >> x = 5
generator thread >> x = 9
printer thread >> x = 9
generator thread >> x = 7
printer thread >> x = 7
generator thread >> x = 3
printer thread >> x = 3
generator thread >> x = 2
printer thread >> x = 2
但是,输出以随机顺序出现,有时打印机先执行,或者其中一个线程在另一个线程执行之前执行多次。
例如:
$ ./mutex.out
generator >> x = 7
generator >> x = 10
generator >> x = 4
generator >> x = 7
generator >> x = 10
printer >> x = 7
printer >> x = 10
printer >> x = 10
printer >> x = 10
printer >> x = 10
$ ./mutex.out
printer >> x = 0
printer >> x = 0
printer >> x = 0
printer >> x = 0
printer >> x = 0
generator >> x = 9
generator >> x = 2
generator >> x = 1
generator >> x = 3
generator >> x = 7
我为这个问题写的代码:
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define NUMTHRDS 2
pthread_t t [ NUMTHRDS];
pthread_mutex_t m1, m2;
int x = 0;
void *thread1(void *arg){
for(int i = 0 ; i < 5 ; i++){
pthread_mutex_lock(&m2);
pthread_mutex_lock(&m1);
x = (rand() % 10) + 1; // generates a random number between 1 and 10
printf("generator >> x = %d\n" , x);
pthread_mutex_unlock(&m1);
pthread_mutex_unlock(&m2);
}
}
void * thread2(void * arg){
for(int i = 0 ; i < 5 ; i++){
pthread_mutex_lock(&m1);
pthread_mutex_lock(&m2);
printf("printer >> x = %d\n" , x);
pthread_mutex_unlock(&m2);
pthread_mutex_unlock(&m1);
}
}
int main(void)
{
srand(time(NULL));
pthread_mutex_init(&m1, NULL);
pthread_mutex_init(&m2, NULL);
pthread_create(&t[1], NULL, thread1, NULL);
pthread_create(&t[0], NULL, thread2, NULL);
pthread_mutex_destroy(&m1);
pthread_mutex_destroy(&m2);
pthread_exit(NULL);
return 0;
}
我的问题是如何正确使用互斥锁,以便在不使用任何其他线程的情况下维持这两个线程之间的顺序。
乍一看有两个问题:
- 线程的序列化不适用于互斥锁
- 在等待线程结束之前对 pthread_mutex_destroy() 的调用使得后者可能使用已销毁的互斥体
这里建议使用条件变量序列化线程并使用 pthread_join():
正确终止
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define NUMTHRDS 2
pthread_t t [ NUMTHRDS];
pthread_mutex_t m1, m2;
int x = 0;
pthread_cond_t cond1, cond2;
int gen, prt;
void *thread1(void *arg){
for(int i = 0 ; i < 5 ; i++){
pthread_mutex_lock(&m1);
if (!gen) {
pthread_cond_wait(&cond1, &m1);
}
x = (rand() % 10) + 1; // generates a random number between 1 and 10
printf("generator >> x = %d\n" , x);
gen = 0;
pthread_mutex_unlock(&m1);
// Wake up printer
pthread_mutex_lock(&m2);
prt = 1;
pthread_cond_signal(&cond2);
pthread_mutex_unlock(&m2);
}
}
void * thread2(void * arg){
for(int i = 0 ; i < 5 ; i++){
pthread_mutex_lock(&m2);
if (!prt) {
pthread_cond_wait(&cond2, &m2);
}
printf("printer >> x = %d\n" , x);
pthread_mutex_unlock(&m2);
prt = 0;
pthread_mutex_unlock(&m2);
// Wake up generator
pthread_mutex_lock(&m1);
gen = 1;
pthread_cond_signal(&cond1);
pthread_mutex_unlock(&m1);
}
}
int main(void)
{
srand(time(NULL));
pthread_mutex_init(&m1, NULL);
pthread_mutex_init(&m2, NULL);
pthread_cond_init(&cond1, NULL);
pthread_cond_init(&cond2, NULL);
pthread_create(&t[1], NULL, thread1, NULL);
pthread_create(&t[0], NULL, thread2, NULL);
// Wake up generator
printf("Waking up generator...\n");
pthread_mutex_lock(&m1);
gen = 1;
pthread_cond_signal(&cond1);
pthread_mutex_unlock(&m1);
pthread_join(t[0], NULL);
pthread_join(t[1], NULL);
pthread_mutex_destroy(&m1);
pthread_mutex_destroy(&m2);
pthread_cond_destroy(&cond1);
pthread_cond_destroy(&cond2);
return 0;
}
不是一个完整的答案,但我只是想明确地说出其他答案中隐含的内容。
...how to use mutexes correctly in order to maintain the order between these two threads...
这不是互斥量的目的。互斥量是错误的工具。
当您希望一个线程等待另一个线程做某事时可以使用的最低级别工具称为 condition variable。在 posix 线程库 (pthreads) 中,您使用了一个 pthread_cond_t
变量,以及对其进行操作的各种 pthread_cond_...(...)
函数:
https://pubs.opengroup.org/onlinepubs/7908799/xsh/pthread.h.html
但还要注意:人们通常使用成熟的、更高级别的模式来解决您的问题类型。例如,Google 表示“阻塞队列”。
根据这个问题的大部分回答和评论,我认为互斥体不是维持两个线程之间顺序的正确工具。但是,在我的导师的帮助下,他向我展示了一个可以解决此类问题的技巧,该技巧是首先锁定其中一个关键部分(由线程 2 执行的关键部分),然后在另一个线程中解锁该关键部分(线程 1)
这就是新代码的样子
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define NUMTHRDS 2
pthread_t t [ NUMTHRDS];
pthread_mutex_t m1, m2;
int x = 0;
void *thread1(void *arg){
pthread_mutex_lock(&m1);
x = (rand() % 10) + 1; // generates a random number between 1 and 10
printf("generator >> x = %d\n" , x);
// 2- unlock the critical section of the printing thread
pthread_mutex_unlock(&m2);
}
void * thread2(void * arg){
pthread_mutex_lock(&m2);
printf("printer >> x = %d\n" , x);
pthread_mutex_unlock(&m1);
}
int main(void)
{
srand(time(NULL));
pthread_mutex_init(&m1, NULL);
pthread_mutex_init(&m2, NULL);
// 1- locking the critical section of the printing thread
pthread_mutex_lock(&m2);
for(int i = 0 ; i < 5 ; i++) {
pthread_create(&t[1], NULL, thread1, NULL);
pthread_create(&t[0], NULL, thread2, NULL);
}
pthread_exit(NULL);
pthread_mutex_destroy(&m1);
pthread_mutex_destroy(&m2);
return 0;
}
我一直在编写使用 C 中的 pthread 库的代码。该代码执行以下操作:
- 主要创建两个线程,每个线程都有自己的线程例程(函数)
- 一个线程(线程1)生成一个随机数赋给一个全局变量x
- 然后另一个线程(线程2)基本上打印全局变量的值
- 这个生成并打印x的随机值的操作重复5次
预期输出:
generator thread >> x = 5
printer thread >> x = 5
generator thread >> x = 9
printer thread >> x = 9
generator thread >> x = 7
printer thread >> x = 7
generator thread >> x = 3
printer thread >> x = 3
generator thread >> x = 2
printer thread >> x = 2
但是,输出以随机顺序出现,有时打印机先执行,或者其中一个线程在另一个线程执行之前执行多次。
例如:
$ ./mutex.out
generator >> x = 7
generator >> x = 10
generator >> x = 4
generator >> x = 7
generator >> x = 10
printer >> x = 7
printer >> x = 10
printer >> x = 10
printer >> x = 10
printer >> x = 10
$ ./mutex.out
printer >> x = 0
printer >> x = 0
printer >> x = 0
printer >> x = 0
printer >> x = 0
generator >> x = 9
generator >> x = 2
generator >> x = 1
generator >> x = 3
generator >> x = 7
我为这个问题写的代码:
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define NUMTHRDS 2
pthread_t t [ NUMTHRDS];
pthread_mutex_t m1, m2;
int x = 0;
void *thread1(void *arg){
for(int i = 0 ; i < 5 ; i++){
pthread_mutex_lock(&m2);
pthread_mutex_lock(&m1);
x = (rand() % 10) + 1; // generates a random number between 1 and 10
printf("generator >> x = %d\n" , x);
pthread_mutex_unlock(&m1);
pthread_mutex_unlock(&m2);
}
}
void * thread2(void * arg){
for(int i = 0 ; i < 5 ; i++){
pthread_mutex_lock(&m1);
pthread_mutex_lock(&m2);
printf("printer >> x = %d\n" , x);
pthread_mutex_unlock(&m2);
pthread_mutex_unlock(&m1);
}
}
int main(void)
{
srand(time(NULL));
pthread_mutex_init(&m1, NULL);
pthread_mutex_init(&m2, NULL);
pthread_create(&t[1], NULL, thread1, NULL);
pthread_create(&t[0], NULL, thread2, NULL);
pthread_mutex_destroy(&m1);
pthread_mutex_destroy(&m2);
pthread_exit(NULL);
return 0;
}
我的问题是如何正确使用互斥锁,以便在不使用任何其他线程的情况下维持这两个线程之间的顺序。
乍一看有两个问题:
- 线程的序列化不适用于互斥锁
- 在等待线程结束之前对 pthread_mutex_destroy() 的调用使得后者可能使用已销毁的互斥体
这里建议使用条件变量序列化线程并使用 pthread_join():
正确终止#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define NUMTHRDS 2
pthread_t t [ NUMTHRDS];
pthread_mutex_t m1, m2;
int x = 0;
pthread_cond_t cond1, cond2;
int gen, prt;
void *thread1(void *arg){
for(int i = 0 ; i < 5 ; i++){
pthread_mutex_lock(&m1);
if (!gen) {
pthread_cond_wait(&cond1, &m1);
}
x = (rand() % 10) + 1; // generates a random number between 1 and 10
printf("generator >> x = %d\n" , x);
gen = 0;
pthread_mutex_unlock(&m1);
// Wake up printer
pthread_mutex_lock(&m2);
prt = 1;
pthread_cond_signal(&cond2);
pthread_mutex_unlock(&m2);
}
}
void * thread2(void * arg){
for(int i = 0 ; i < 5 ; i++){
pthread_mutex_lock(&m2);
if (!prt) {
pthread_cond_wait(&cond2, &m2);
}
printf("printer >> x = %d\n" , x);
pthread_mutex_unlock(&m2);
prt = 0;
pthread_mutex_unlock(&m2);
// Wake up generator
pthread_mutex_lock(&m1);
gen = 1;
pthread_cond_signal(&cond1);
pthread_mutex_unlock(&m1);
}
}
int main(void)
{
srand(time(NULL));
pthread_mutex_init(&m1, NULL);
pthread_mutex_init(&m2, NULL);
pthread_cond_init(&cond1, NULL);
pthread_cond_init(&cond2, NULL);
pthread_create(&t[1], NULL, thread1, NULL);
pthread_create(&t[0], NULL, thread2, NULL);
// Wake up generator
printf("Waking up generator...\n");
pthread_mutex_lock(&m1);
gen = 1;
pthread_cond_signal(&cond1);
pthread_mutex_unlock(&m1);
pthread_join(t[0], NULL);
pthread_join(t[1], NULL);
pthread_mutex_destroy(&m1);
pthread_mutex_destroy(&m2);
pthread_cond_destroy(&cond1);
pthread_cond_destroy(&cond2);
return 0;
}
不是一个完整的答案,但我只是想明确地说出其他答案中隐含的内容。
...how to use mutexes correctly in order to maintain the order between these two threads...
这不是互斥量的目的。互斥量是错误的工具。
当您希望一个线程等待另一个线程做某事时可以使用的最低级别工具称为 condition variable。在 posix 线程库 (pthreads) 中,您使用了一个 pthread_cond_t
变量,以及对其进行操作的各种 pthread_cond_...(...)
函数:
https://pubs.opengroup.org/onlinepubs/7908799/xsh/pthread.h.html
但还要注意:人们通常使用成熟的、更高级别的模式来解决您的问题类型。例如,Google 表示“阻塞队列”。
根据这个问题的大部分回答和评论,我认为互斥体不是维持两个线程之间顺序的正确工具。但是,在我的导师的帮助下,他向我展示了一个可以解决此类问题的技巧,该技巧是首先锁定其中一个关键部分(由线程 2 执行的关键部分),然后在另一个线程中解锁该关键部分(线程 1)
这就是新代码的样子
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define NUMTHRDS 2
pthread_t t [ NUMTHRDS];
pthread_mutex_t m1, m2;
int x = 0;
void *thread1(void *arg){
pthread_mutex_lock(&m1);
x = (rand() % 10) + 1; // generates a random number between 1 and 10
printf("generator >> x = %d\n" , x);
// 2- unlock the critical section of the printing thread
pthread_mutex_unlock(&m2);
}
void * thread2(void * arg){
pthread_mutex_lock(&m2);
printf("printer >> x = %d\n" , x);
pthread_mutex_unlock(&m1);
}
int main(void)
{
srand(time(NULL));
pthread_mutex_init(&m1, NULL);
pthread_mutex_init(&m2, NULL);
// 1- locking the critical section of the printing thread
pthread_mutex_lock(&m2);
for(int i = 0 ; i < 5 ; i++) {
pthread_create(&t[1], NULL, thread1, NULL);
pthread_create(&t[0], NULL, thread2, NULL);
}
pthread_exit(NULL);
pthread_mutex_destroy(&m1);
pthread_mutex_destroy(&m2);
return 0;
}