gpt4 book ai didi

linux - pthread_exit 返回值

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:56:34 27 4
gpt4 key购买 nike

这让我很惊讶。

static int ret = 50;
void * thread_func(void *arg)
{
pthread_exit(&ret);
}

int main(void)
{
pthread_t thr;
int *exit_status;
pthread_create(&thr, NULL, thread_func, NULL);
sleep(2);
pthread_join(thr, (void **)&exit_status);
printf("value of exit status - %d\n", *exit_status);

ret = 20;
pthread_join(thr, (void **)&exit_status);
printf("value of exit status - %d\n", *exit_status);
return 0;
}

输出是

value of exit status - 50
value of exit status - 20

我期望 exit_status 两次都是线程的实际退出值(在我的例子中是 50)。相反,它只是返回我用于 pthread_exit 的全局变量的值。这不是错误吗?

最佳答案

:如果您想指定如何获取 ret当前值,您会返回什么。

A:ret的地址。

:你返回了什么?

A:`ret.

的地址

:那么当调用者取消引用它时会得到什么?

A:ret的当前值。

您可能需要 pthread_exit(ret); —— 返回 retvalue,以及调用 的代码中的相应更改>pthread_join

关于linux - pthread_exit 返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25417820/

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