IO、进程、线程05

练习1:测试错误检查锁和递归锁是否会造成死锁状态

pthread_mutex_t a;
pthread_mutex_t b;
pthread_mutexattr_t attr;
void* run(void* arg)
{
	while(1){
		pthread_mutex_lock(&b);
		printf("b\n");
 
	}
}
int main(int argc, const char *argv[])
{
 
	pthread_mutexattr_init(&attr);
	pthread_mutexattr_settype(&attr,PTHREAD_MUTEX_RECURSIVE_NP);
	pthread_mutex_init(&a,&attr);
	pthread_mutex_init(&b,&attr);
 
	pthread_t id;
	pthread_create(&id,0,run,0);
	pthread_detach(id);
 
	while(1){
		pthread_mutex_lock(&a);
		printf("a\n");
	}
	return 0;
}

练习2:有2条隧道,一条快速隧道,一条普通隧道。有5列火车,3列复兴号,2列绿皮扭扭车 要求,复兴号2条隧道都能走,绿皮车只能走普通隧道 模拟火车过隧道的场景

相关推荐

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-23 08:32:02       106 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-23 08:32:02       116 阅读
  3. 在Django里面运行非项目文件

    2024-07-23 08:32:02       95 阅读
  4. Python语言-面向对象

    2024-07-23 08:32:02       103 阅读

热门阅读

  1. golang长连接的误用

    2024-07-23 08:32:02       24 阅读
  2. ubuntu开启 远程登录 允许root远程登录

    2024-07-23 08:32:02       24 阅读
  3. P1725 琪露诺 题解

    2024-07-23 08:32:02       28 阅读
  4. Qt 实战(7)元对象系统 | 7.6、Q_DECLARE_METATYPE详解

    2024-07-23 08:32:02       27 阅读
  5. php 根据位置的经纬度计算距离

    2024-07-23 08:32:02       28 阅读
  6. 【git】切换到远程其他分支

    2024-07-23 08:32:02       22 阅读
  7. CentOS 6.8 中部署 Spring Boot 应用程序

    2024-07-23 08:32:02       27 阅读
  8. Mybatis-plus常用注解

    2024-07-23 08:32:02       26 阅读
  9. 华为OD机试 - 文件缓存系统——优先队列解法

    2024-07-23 08:32:02       30 阅读
  10. 计算机网络之数据链路层

    2024-07-23 08:32:02       26 阅读