gpt4 book ai didi

linux - 如何在 fedora 9 上实现 POSIX 线程 ( pthread.h )

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

我需要使用 pthreads,但我的 fedora 中似乎没有它,而且我找不到如何安装它。谢谢

最佳答案

Fedora 9 使用 Linux 内核 2.6 版,该版本与 libc 2.3.2 完全兼容。此 libc 包含 pthread.h header 。

检查此实现示例。

#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);
}

并编译:

gcc program.c -o program -lpthread

关于linux - 如何在 fedora 9 上实现 POSIX 线程 ( pthread.h ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29366798/

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