作者:Graceedelweiss_602 | 来源:互联网 | 2023-07-19 15:16
Linux下线程里面可以再创建线程吗经过操作系统的学习,我们知道线程是系统调用的最小单位,不是资源分配的最小单位,那么,线程里面可以创建新的线程吗?因为我在项目中使用线程再创建线程
Linux下线程里面可以再创建线程吗
经过操作系统的学习,我们知道线程是系统调用的最小单位,不是资源分配的最小单位,那么,线程里面可以创建新的线程吗?
因为我在项目中使用线程再创建线程出现了问题,因此产生这个疑惑,经过尝试之后发现,线程里面是可以再创建线程的,具体实例代码如下:
#include
#include
#include
#include
#include
#include
typedef struct
{
int num;
char* str;
}pere_Data;
void* work(int num,char* str)
{
printf("The num is %d\n",num);
printf("The str is %s\n",str);
}
void* fun(int num)
{
printf("********The num is: %d*********\n",num);
}
void* thread_func(void *argv)
{
pere_Data *p = (pere_Data*)argv;
//线程响应
work(p->num,p->str);
pthread_t tid;
int num = 6;
pthread_create(&tid,NULL,fun,num);
pthread_join(tid,NULL);
pthread_exit(0);
}
int main()
{
pthread_t pid;
pere_Data p;
p.num = 10;
p.str = "hello";
pthread_create(&pid,NULL,thread_func,(void *)&p);
pthread_join(pid,NULL);
printf("==============\n");
}
初学者需要注意的是,在编译的时候,编译指令后需要后缀-lpthread
程序运行结果如下: