我正在使用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\n", 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\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);
}
}
for(t=0; t<NUM_THREADS;t++){
pthread_join(threads[t], &status);
printf("%ld\n",(long)status);
}
/* Last thing that main() should do */
pthread_exit(NULL);
}
答案 0 :(得分:4)
您的PrintHello()
函数返回局部变量的地址。在函数退出后尝试使用该地址是未定义的,从获取垃圾值到程序崩溃,任何事情都可能发生。另外,您可以将地址转换为长整数并打印出地址本身,而不是取消引用该地址以获得其指向的值(假设它仍然有效,同样,它不是有效的)。我怀疑那是您打算要做的。一般的方法应该是在线程中分配足够的内存以保存其返回值,然后返回该地址。然后在连接线程中,取消引用返回的地址以获取实际的返回值,并在完成后释放该内存。