可以请任何人让我知道我的代码出了什么问题。 我一次只想要一个线程来访问关键区域但是所有线程都进入了。
#include <stdio.h>
#include <unistd.h>
#include <pthread.h>
pthread_t th[5];
pthread_mutex_t mutex_for_some_value;
int value;
void * thread_talk(void * arguments) {
while (1) {
pthread_mutex_lock(&mutex_for_some_value);
printf("\n Now Accessed by %d", *((int*) arguments));
pthread_mutex_unlock(&mutex_for_some_value);
sleep(2);
printf("\n\n Thread %d is left critical section", *((int*) arguments));
}
return NULL;
}
int main(int argc, char **argv) {
int count[5] = { 1, 2, 3, 4, 5 };
printf("\n %d", pthread_mutex_init(&mutex_for_some_value, NULL));
for (int i = 0; i < 5; i++) {
printf("\n Creating %d thread", count[i]);
pthread_create(&th[i], NULL, &thread_talk, (void*) &count[i]);
}
for (int i = 0; i < 5; ++i) {
pthread_join(th[i], NULL);
}
pthread_mutex_destroy(&mutex_for_some_value);
printf("\n Main done");
return 0;
}
现在因为互斥锁在那里所以没有两个线程应该进入我的关键区域。 但输出是
0 创建1个线程
创建2个帖子
创建3个帖子
创建4个帖子
创建5个帖子
现在访问4
现在访问3
现在访问2
现在访问1
现在可以访问5
线程4是关键部分 现在访问4
线程3是关键部分 现在访问3
线程1是关键部分 现在访问1
线程2是关键部分 现在访问2
线程5是关键部分
答案 0 :(得分:2)
该行:
sleep(2)
将延迟“线程X左侧临界区”输出,直到另一个线程打印出“现在被Y访问”为止。锁定应该仍然有效。