gpt4 book ai didi

c - pthread_self 返回不同的值

转载 作者:行者123 更新时间:2023-11-30 19:59:51 30 4
gpt4 key购买 nike

我正在使用 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);
}

最佳答案

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

关于c - pthread_self 返回不同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52349318/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com