如何在 Fedora 9 上实现 POSIX 个线程 ( pthread.h )
how to implement POSIX threads ( pthread.h ) on fedora 9
我需要使用 pthreads,但似乎我的 fedora 中没有它,而且我找不到如何安装它。
谢谢
phtread.h 头文件由 glibc 头文件提供,因此,您需要在编译应用程序之前安装它。
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
我需要使用 pthreads,但似乎我的 fedora 中没有它,而且我找不到如何安装它。 谢谢
phtread.h 头文件由 glibc 头文件提供,因此,您需要在编译应用程序之前安装它。
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