gpt4 book ai didi

Linux + uClibc + pthread (C) : application freezes at the end

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:09:38 25 4
gpt4 key购买 nike

我正在尝试构建自己的 uClibc 嵌入式系统。我遇到了一些问题,但是2天后,我解决了所有问题。只剩下一个:pthread 无法正常工作。这是一个简单的程序,来自 python 的配置脚本:

#include <pthread.h>

void* routine(void* p){return NULL;}

int main(){
pthread_t p;
if(pthread_create(&p,NULL,routine,NULL)!=0)
return 1;
(void)pthread_detach(p);
return 0;
}

在我基于 glibc 的系统上,它运行然后退出。但是在我基于 uclibc 的系统上,它运行、结束线程并卡住:

[Thread debugging using libthread_db enabled]
[New Thread 0x801 (LWP 17631)]
[New Thread 0x402 (LWP 17632)]
[Thread 0x402 (LWP 17632) exited]
[Thread 0x801 (LWP 17631) exited]
^C
Program received signal SIGINT, Interrupt.
0xb7f768e7 in sigsuspend () from /lib/libc.so.0

我尝试了旧的和新的 linuxthreads,都没有用。你有想法吗?

编辑:

好的,我找到了更多信息:

#include <pthread.h>
#include <stdio.h>
void* routine(void* p){printf("AAA!\n");return NULL;}

int main(){
pthread_t p;
pthread_create(&p,NULL,&routine,NULL);
printf("BBB!");
(void)pthread_detach(p);
pthread_exit(0);
exit(0);
}

仅打印“AAA!”,然后卡住(glibc 系统以随机顺序打印“AAA!”和“BBB!”)。所以我认为 uclibc pthreads 本身一定有一些错误。还有其他帮助吗?尝试了其他一些 pthread 测试,但每个测试最终都卡住了。编辑:我不知道为什么会这样,但我复制了预编译的 uclibc,它现在可以工作了。

最佳答案

如果没有通过其他方式保证主线程是最后一个运行的,main需要在返回前调用pthread_exit(),等待所有其他线程终止。

如果没有其他线程在运行,那将成为空操作,因此无论如何调用它都没有坏处。

关于Linux + uClibc + pthread (C) : application freezes at the end,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8377948/

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