哲学家问题观察死锁
1.1 不死锁代码
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
#include <pthread.h>
#include <errno.h>
#include <math.h>
// chopstick as mutex
pthread_mutex_t chopstick[6];
void *eat_think(void *arg)
{
char phi = *(char *)arg;
int left, right;
switch(phi) {
case 'A':
left = 5;
right = 1;
break;
case 'B':
left = 1;
right = 2;
break;
case 'C':
left = 2;
right = 3;
break;
case 'D':
left = 3;
right = 4;
break;
case 'E':
left = 4;
right = 5;
break;
}
int j;
for (j = 0; j < 5; j++)
{
usleep(3);
pthread_mutex_lock(&chopstick[left]);
printf("Philosopher %c fetches chopstick %d\n", phi, left);
if (pthread_mutex_trylock(&chopstick[right]) == EBUSY)
{
pthread_mutex_unlock(&chopstick[left]);
continue;
}
// pthread_mutex_lock(&chopstick[right]);
printf("Philosopher %c fetches chopstick %d\n", phi, right);
printf("philosopher %c is eating. %d\n", phi, j+1);
usleep(3);
pthread_mutex_unlock(&chopstick[left]);
printf("philosopher %c release chopstick %d\n", phi, left);
pthread_mutex_unlock(&chopstick[right]);
printf("Philosopher %c release chopstick %d\n", phi, right);
}
}
int main()
{
pthread_t A, B, C, D, E;
int i;
for(i = 0; i < 5; i++)
{
pthread_mutex_init(&chopstick[i], NULL);
}
pthread_create(&A, NULL, eat_think, "A");
pthread_create(&B, NULL, eat_think, "B");
pthread_create(&C, NULL, eat_think, "C");
pthread_create(&D, NULL, eat_think, "D");
pthread_create(&E, NULL, eat_think, "E");
pthread_join(A, NULL);
pthread_join(B, NULL);
pthread_join(C, NULL);
pthread_join(D, NULL);
pthread_join(E, NULL);
return 0;
}
1.2 不死锁截图
2.1 死锁代码
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
#include <pthread.h>
#include <errno.h>
#include <math.h>
// chopstick as mutex
pthread_mutex_t chopstick[6];
void *eat_think(void *arg)
{
char phi = *(char *)arg;
int left, right;
switch(phi) {
case 'A':
left = 5;
right = 1;
break;
case 'B':
left = 1;
right = 2;
break;
case 'C':
left = 2;
right = 3;
break;
case 'D':
left = 3;
right = 4;
break;
case 'E':
left = 4;
right = 5;
break;
}
int j;
for (j = 0; j < 500; j++)
{
usleep(3);
pthread_mutex_lock(&chopstick[left]);
printf("Philosopher %c fetches chopstick %d\n", phi, left);
// if (pthread_mutex_trylock(&chopstick[right] == EBUSY))
// {
// pthread_mutex_unlock(&chopstick[left]);
// continue;
// }
pthread_mutex_lock(&chopstick[right]);
printf("Philosopher %c fetches chopstick %d\n", phi, right);
printf("philosopher %c is eating. %d\n", phi, j+1);
usleep(3);
pthread_mutex_unlock(&chopstick[left]);
printf("philosopher %c release chopstick %d\n", phi, left);
pthread_mutex_unlock(&chopstick[right]);
printf("Philosopher %c release chopstick %d\n", phi, right);
}
}
int main()
{
pthread_t A, B, C, D, E;
int i;
for(i = 0; i < 5; i++)
{
pthread_mutex_init(&chopstick[i], NULL);
}
pthread_create(&A, NULL, eat_think, "A");
pthread_create(&B, NULL, eat_think, "B");
pthread_create(&C, NULL, eat_think, "C");
pthread_create(&D, NULL, eat_think, "D");
pthread_create(&E, NULL, eat_think, "E");
pthread_join(A, NULL);
pthread_join(B, NULL);
pthread_join(C, NULL);
pthread_join(D, NULL);
pthread_join(E, NULL);
return 0;
}
2.2 死锁截图
有了计划记得推动,不要原地踏步。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异
· 三行代码完成国际化适配,妙~啊~
2020-12-13 ubuntu 使用 apt 安装 apache2 php7 mysql8