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

最佳答案

编辑:在HP-UX11上。 pthread_create失败,并显示错误251:功能不可用。

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

您是否与-lpthread链接?

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

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

此外,在使用pthread时,应该检查几乎每个对pthread *的调用的返回值(请参阅每个函数的man以检查返回的可能错误)。

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

如果出现以下情况,pthread_create()将失败:

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

[EINVAL] attr指定的值无效。

09-15 22:38