摘要: 创建一个线程 #include<stdio.h> #include<unistd.h> #include<pthread.h> #include<sys/types.h> void* threadFunc(void* arg) { printf("In NEW threaad\n"); } int 阅读全文
posted @ 2023-04-28 21:15 一往而深, 阅读(15) 评论(0) 推荐(0) 编辑