pthread_self返回不同的值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pthread_self返回不同的值相关的知识,希望对你有一定的参考价值。

我正在使用C学习线程,并找到了以下“Hello World”程序。当我使用pthread_join()在线程内和线程外打印pthread_value()的值时,两个线程返回的值完全不同。

/******************************************************************************
* FILE: hello.c
* DESCRIPTION:
*   A "hello world" Pthreads program.  Demonstrates thread creation and
*   termination.
* AUTHOR: Blaise Barney
* LAST REVISED: 08/09/11
******************************************************************************/
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#define NUM_THREADS     5

void *PrintHello(void *threadid)
{
   long tid;
   tid = (long)threadid;
   printf("Hello World! It's me, thread #%ld!, %ld
", tid, pthread_self());
   long a=  pthread_self();
   //pthread_exit(NULL);
        long *p = &a;
   return p;
}

int main(int argc, char *argv[])
{
   pthread_t threads[NUM_THREADS];
   int rc;
   void *status;
   long t;
   FILE* file = fopen("test.txt", "r");
   for(t=0;t<NUM_THREADS;t++){
     printf("In main: creating thread %ld
", t);
     rc = pthread_create(&threads[t], NULL, PrintHello, (void *)t);
     if (rc){
       printf("ERROR; return code from pthread_create() is %d
", rc);
       exit(-1);
       }
     }
   for(t=0; t<NUM_THREADS;t++){
     pthread_join(threads[t], &status);
     printf("%ld
",(long)status);

        }
   /* Last thing that main() should do */
   pthread_exit(NULL);
}
答案

您的PrintHello()函数返回局部变量的地址。函数退出后尝试使用该地址是未定义的,任何事情都可能发生,从获取垃圾值到程序崩溃。加上而不是解除引用该地址以获得它指向的值(假设它仍然有效,再次,它不是),您将地址转换为长并打印出地址本身。我怀疑那是你打算做的。一般的方法应该是在线程中使用malloc足够的内存来保存其返回值,并返回该地址。然后在连接线程中,取消引用返回地址以获取实际返回值,并在完成后释放该内存。

以上是关于pthread_self返回不同的值的主要内容,如果未能解决你的问题,请参考以下文章

如何将微调器的值放入不同的片段中?

导航到与 webview 片段不同的片段后,如何在 webview 中返回?

pthread_self() 贵吗?

pthread_detach(pthread_self())

如何通过按返回返回到上一个片段?

为啥 cProfile 会导致函数返回不同的值?