gpt4 book ai didi

c - PThread 创建和终止

转载 作者:太空宇宙 更新时间:2023-11-04 03:33:43 25 4
gpt4 key购买 nike

我是使用 c 进行 Pthread 编程的新手正好从网上拿来了下面的代码

#include <pthread.h>
#include <stdio.h>
#define NUM_THREADS 5
void *PrintHello(void *threadid)
{
long tid;
tid = (long)threadid;
printf("Hello World! It's me, thread #%ld!\n", tid);
pthread_exit(NULL);
}

int main (int argc, char *argv[])
{
pthread_t threads[NUM_THREADS];
int rc;
long t;
for(t=0; t<NUM_THREADS; t++){
printf("In main: creating thread %ld\n", t);
rc = pthread_create(&threads[t], NULL, PrintHello, (void *)t);
if (rc)
{
printf("ERROR; return code from pthread_create() is %d\n", rc);
exit(-1);
}
}

/* Last thing that main() should do */
pthread_exit(NULL);
}

每次运行上述代码时收到的输出都不同。有什么错误原因吗?

最佳答案

我不知道你的程序有什么错误。它可以完美地执行。当线程被创建时,它的运行时间是你无法控制的,你不知道它定位在哪个时间,这取决于你的操作系统。所以每次输出都是不同的

关于c - PThread 创建和终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34149125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com