07 2022 档案
摘要:一、 软件部署 1.安装docker # 在线安装(阿里云镜像) ## 配置docker仓库 wget https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.rep -O /etc/yum.repos.d/docker-ce.repo
阅读全文
摘要:C/C++多线程与互斥锁 //获取线程ID: //方法1、 void* thread(void *id){ printf("this is a new thread, thread ID is %u\n", pthread_self()); return NULL; } //方法2、 #includ
阅读全文