在运行 Qt 应用程序的服务器上,当其他备份作业在夜间开始运行时,我收到以下错误:
QEventDispatcherUNIXPrivate(): Unable to create thread pipe: Too many open files
QEventDispatcherUNIXPrivate(): Can not continue without a thread pipe
连接函数是否可能需要“unix 文件句柄”?例如,如果我执行以下操作,是否会从操作系统获取额外的文件句柄资源,直到我断开连接?
connect(this, SIGNAL(sendConfig(QString, QString)), deviceCon, SLOT(setDeviceConfig(QString, QString)));
emit sendConfig(configEntry, configValue);
disconnect(this, SIGNAL(sendConfig(QString, QString)), deviceCon, SLOT(setDeviceConfig(QString, QString)));
谢谢。尖刺