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

时间:2015-03-31 10:46:18

标签: linux pthreads posix fedora

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

2 个答案:

答案 0 :(得分:1)

Fedora 9使用Linux内核版本2.6,此版本与libc 2.3.2完全兼容。这个libc包含pthread.h头文件。

检查此实施示例。

#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

答案 1 :(得分:0)

pthread.h头文件由libc头提供,因此,您希望在编译应用程序之前安装它。