pthread返回251

时间:2009-04-10 08:59:14

标签: c++ multithreading pthreads

pthread_create返回值251而不创建线程。有谁知道问题是什么?请帮忙。该机器是HP-UX。

我是多线程的新手。

   #include <stdio.h>
   #include <stdlib.h>
   #include <pthread.h>

   void *print_message_function( void *ptr );

   main()
   {
        pthread_t thread1, thread2;
        char *message1 = "Thread 1";
        char *message2 = "Thread 2";
        int  iret1, iret2;
        /* Create independent threads each of which will
         * execute function */

        iret1 = pthread_create( &thread1, NULL, print_message_function, (void*) message1);
        iret2 = pthread_create( &thread2, NULL, print_message_function, (void*) message2);

        /* Wait till threads are complete before
         * main continues. Unless we  */
        /* wait we run the risk of executing an
         * exit which will terminate   */
        /* the process and all threads before the
         * threads have completed.   */

        pthread_join( thread1, NULL);
        pthread_join( thread2, NULL);
        printf("Thread 1 returns: %d\n",iret1);
        printf("Thread 2 returns: %d\n",iret2);
        exit(0);
   }

   void *print_message_function( void *ptr )
   {
        char *message;
        message = (char *) ptr;
        printf("%s \n", message);
   }

2 个答案:

答案 0 :(得分:4)

编辑:在HP-UX11上。 pthread_create失败,错误251:函数不可用。

检查-lc是否在链接顺序中的-lpthread之前出现。 如果是这种情况,则调用将解析为C库中的存根 并可能导致此错误。


您是否与-lpthread链接?

您应该使用errno.h来查看系统上的错误251,或者这应该为您提供更详细的消息:

printf("%s\n", strerror(errno));

此外,在使用pthread时,你应该检查几乎每次调用pthread *的返回值(参见每个函数的man以检查是否返回了可能的错误)

对于pthread_create,您至少有两个可能的错误(取决于您的系统和pthread实现):

如果出现以下情况,

pthread_create()将失败:

[EAGAIN]系统缺乏创建所需的资源                         另一个线程,或系统强加的限制                         进程中的线程总数                         将超过[PTHREAD_THREADS_MAX]。

[EINVAL] attr指定的值无效。

答案 1 :(得分:0)

这在我的Linux机器上编译并运行,结果如下:

Thread 1
Thread 2
Thread 1 returns: 0
Thread 2 returns: 0

所以看起来问题不在你的代码中,而在于环境中的问题。我已经使用HP-UX超过10年了,所以我无法帮助你。