Qt アプリケーションを実行しているサーバーで、夜間に別のバックアップ ジョブの実行が開始されるとすぐに、次のエラーが発生しました。
QEventDispatcherUNIXPrivate(): Unable to create thread pipe: Too many open files
QEventDispatcherUNIXPrivate(): Can not continue without a thread pipe
接続機能に「unix ファイル ハンドル」が必要な可能性はありますか? たとえば、次のようにすると、切断するまで、OS から追加のファイル ハンドル リソースが必要になりますか?
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)));
ありがとう。スパイキー