diff --git a/src/corelib/ipc/qsystemsemaphore.cpp b/src/corelib/ipc/qsystemsemaphore.cpp index a457271943..3f9a7018da 100644 --- a/src/corelib/ipc/qsystemsemaphore.cpp +++ b/src/corelib/ipc/qsystemsemaphore.cpp @@ -342,6 +342,7 @@ void QSystemSemaphorePrivate::setUnixErrorString(QLatin1StringView function) break; case ERANGE: case ENOSPC: + case EMFILE: errorString = QSystemSemaphore::tr("%1: out of resources").arg(function); error = QSystemSemaphore::OutOfResources; break;