gpt4 book ai didi

c++ - Linux 中存在段错误的 poll() 系统调用核心转储

转载 作者:行者123 更新时间:2023-11-30 17:26:06 26 4
gpt4 key购买 nike

我在poll()系统调用中遇到段错误,并转储以下代码的核心

wait_time(int wait_time)
{
struct pollfd fds;

poll(&fds, 0, wait_time);

}

来自其他功能

void xyz()
{
int a=0;
if (a==2) {
wait_time(3);
a=0;
}
a++;
//something else i am doing
}

main()
{
while(1)
{
xyz();
}

}

如何解决 poll() 系统调用上的核心转储问题?

最佳答案

下面的解决方案工作正常,

wait_time(int wait_time)
{
poll(NULL, 0, wait_time);
}

关于c++ - Linux 中存在段错误的 poll() 系统调用核心转储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26882506/

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