gpt4 book ai didi

c++ - 为什么这个程序会失败(有时)?

转载 作者:搜寻专家 更新时间:2023-10-31 02:00:40 25 4
gpt4 key购买 nike

#include <cstdio>
#include <QtCore/QProcess>

int main (int argc, char** argv) {
// if we remove 3 following lines, the problem described below doesn't exists!!
QProcess process;
process.start ("asdqwe"); // doesn't matter what we try to execute here.
process.waitForStarted (1000);

while (true) {
char buf[100];
if (scanf ("%s", buf) == EOF) { // it looks like stdin is closed!
printf("FAIL\n");
return 1;
}
printf ("%s\n", buf);
}
return 0;
}

这段代码只是展示问题的一个片段。在完整的应用程序中,我需要与进程进行读/写通信。

我编译它:

g++ -o out ./main.cpp -I /usr/include/qt4/ -lQtCore

然后在终端中从 bash 命令行执行它。

为什么这个程序有时会打印FAIL,有时会一直循环?

编辑:这不是关于 scan/printf 的问题。同样的问题是如果我使用 iostreams + 字符串。这个问题是关于 QProcess 与父进程的文件描述符的交互。

最佳答案

您的 scanf 被子进程终止时捕获的 SIGCHLD 信号中断。在这种情况下,还会返回 EOF

QProcess 东西确实为 SIGCHLD 设置了信号处理程序(检查源代码):(此处为 4.5.3)

Q_GLOBAL_STATIC(QProcessManager, processManager)

QProcessManager::QProcessManager()
{
#if defined (QPROCESS_DEBUG)
qDebug() << "QProcessManager::QProcessManager()";
#endif
// initialize the dead child pipe and make it non-blocking.
// (pipe and fcntl skipped - P. Shved.)

// set up the SIGCHLD handler, which writes a single byte to the dead
// child pipe every time a child dies.
struct sigaction oldAction;
struct sigaction action;
memset(&action, 0, sizeof(action));
action.sa_handler = qt_sa_sigchld_handler;
action.sa_flags = SA_NOCLDSTOP;
::sigaction(SIGCHLD, &action, &oldAction);
if (oldAction.sa_handler != qt_sa_sigchld_handler)
qt_sa_old_sigchld_handler = oldAction.sa_handler;
}

关于c++ - 为什么这个程序会失败(有时)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1711525/

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