c语言怎么创建线程和使用
1个回答
展开全部
用 pthread_t创建线程名字。然后pthread_create开辟线程。
具体使用。
比如有一个函数
void *hello()
{
printf("create pthread!\n");
}
,然后在main函数里面调用,
int main()
{
pthread_t a_thread;
pthread_create(&a_thread, NULL, (void *)hello, NULL);
}
这样就完成了hello()函数的创建和使用,接下来hello函数就会在一个线程中运行
具体使用。
比如有一个函数
void *hello()
{
printf("create pthread!\n");
}
,然后在main函数里面调用,
int main()
{
pthread_t a_thread;
pthread_create(&a_thread, NULL, (void *)hello, NULL);
}
这样就完成了hello()函数的创建和使用,接下来hello函数就会在一个线程中运行
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |