Thread 1 (Thread 0x7b7acce12980 (LWP 643506)): #0 0x000061987e836200 in ?? () No symbol table info available. #1 0x00007b7ace19c3ad in QMetaObject::cast(QObject const*) const () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #2 0x00007b7aa3728d9b in QMetaObject::cast (this=0x7b7aa3e53900 , obj=0x61987b5c5830) at /home/qtrob/dev/src/qt-6.9.3/qtbase/src/corelib/kernel/qobjectdefs.h:241 No locals. #3 0x00007b7aa3734b7b in qobject_cast (object=0x61987b5c5830) at /home/qtrob/dev/src/qt-6.9.3/qtbase/src/corelib/kernel/qobject.h:428 No locals. #4 0x00007b7aa37316eb in CppEditor::BuiltinEditorDocumentProcessor::onParserFinished (this=0x6198803ad0c0, document=..., snapshot=...) at /home/qtrob/dev/src/creator-17/src/plugins/cppeditor/builtineditordocumentprocessor.cpp:273 cppEditorDoc = 0x61987ed14cc0 cppDoc = {value = {ptr = 0x7b79f44d66e0}, d = 0x7b79f4617f30} openDocument = 0x61987b5c5830 __for_range = @0x7ffcc0ac56a0: {> = {> = {}, }, d = {d = 0x61987de4f8a0, ptr = 0x61987de4f8b0, size = 13}} __for_begin = {i = 0x61987de4f8e0} __for_end = {i = 0x61987de4f918} __PRETTY_FUNCTION__ = "void CppEditor::BuiltinEditorDocumentProcessor::onParserFinished(CPlusPlus::Document::Ptr, CPlusPlus::Snapshot)" source = {fileName = {d = {d = 0x61987c892dc0, ptr = 0x61987c892dd0 u"/home/qtrob/dev/src/qt-dev_09.24-base_imageformats_svg/qtsvg/tests/manual/rendertestsuite/main.cpp", size = 98}, static _empty = 0 u'\000'}, code = {d = {d = 0x61987dd4a220, ptr = 0x61987dd4a230 "// Copyright (C) 2019 The Qt Company Ltd.\n// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only\n\n#include \n#include \n#include \n#include \n\nstatic QImage render(const QString &filePath)\n{\n fprintf(stdout, \"Rendering %s\\n\", qPrintable(filePath));\n QSvgRenderer renderer(filePath);\n if (!renderer.isValid()) {\n fprintf(stderr, \"Could not load SVG file %s\\n\", qPrintable(filePath));\n return QImage();\n }\n QImage image(480, 360, QImage::Format_ARGB32);\n image.fill(Qt::transparent);\n {\n QPainter p(&image);\n renderer.render(&p);\n }\n return image;\n}\n\nint main(int argc, char **argv)\n{\n QGuiApplication app(argc, argv);\n\n QCommandLineParser parser;\n parser.addHelpOption();\n parser.addPositionalArgument(QLatin1String(\"command\"), QLatin1String(\"[create-baseline,diff]\"));\n parser.addPositionalArgument(QLatin1String(\"path-to-svg-testsuite\"), QLatin1String(\"Path to the svg/ sub-directory of the test suite\"));\n\n parser.process(app);\n\n const auto args = parser.positionalArguments();\n\n if (args.count() != 2) {\n parser.showHelp(EXIT_FAILURE);\n return EXIT_FAILURE; // never reached\n }\n\n const QString commandAsString = args.at(0);\n const QString sourcePath = args.at(1);\n\n QDirIterator sourceFileIterator(sourcePath, QStringList(QLatin1String(\"*.svg\")), QDir::Files);\n const QString baselinePath = \"baseline\";\n const QString diffPath = \"difference\";\n\n const auto referenceFilePath = [baselinePath](const QFileInfo &testCaseFileInfo) -> QString {\n return baselinePath + QLatin1Char('/') + testCaseFileInfo.baseName() + QLatin1String(\".png\");\n };\n\n if (commandAsString == \"create-baseline\") {\n while (sourceFileIterator.hasNext()) {\n", ' ' , "sourceFileIterator.next();\n\n", ' ' , "QImage image = render(sourceFileIterator.filePath());\n", ' ' , "if (image.isNull())\n", ' ' , "return EXIT_FAILURE;\n", ' ' , "QString outputFileName = referenceFilePath(sourceFileIterator.fileInfo());\n", ' ' , "if (!QDir().mkpath(baselinePath) || !image.save(outputFileName)) {\n", ' ' , "fprintf(stderr, \"Could not save PNG file %s\\n\", qPrintable(outputFileName));\n", ' ' , "return EXIT_FAILURE;\n", ' ' , "}\n }\n } else if (commandAsString == \"diff\") {\n while (sourceFileIterator.hasNext()) {\n", ' ' , "sourceFileIterator.next();\n\n", ' ' , "QImage actual = render(sourceFileIterator.filePath());\n", ' ' , "const QString referencePath = referenceFilePath(sourceFileIterator.fileInfo());\n", ' ' , "QImage reference;\n", ' ' , "if (!reference.load(referencePath)) {\n", ' ' , "fprintf(stderr, \"Could not load reference file %s\\n\", qPrintable(referencePath));\n", ' ' , "return EXIT_FAILURE;\n", ' ' , "}\n\n", ' ' , "if (actual == reference)\n", ' ' , "continue;\n\n", ' ' , "QImage sideBySideImage(actual.width() * 2, actual.height(), QImage::Format_ARGB32);\n", ' ' , "sideBySideImage.fill(Qt::transparent);\n", ' ' , "{\n", ' ' , "QPainter p(&sideBySideImage);\n", ' ' , "p.drawImage(0, 0, actual);\n", ' ' , "p.drawImage(actual.width(), 0, reference);\n", ' ' , "}\n\n", ' ' , "const QString sideBySideFileName = diffPath + QLatin1Char('/') + sourceFileIterator.fileInfo().baseName() + QLatin1String(\".png\");\n", ' ' , "if (!QDir().mkpath(diffPath) || !sideBySideImage.save(sideBySideFileName)) {\n", ' ' , "fprintf(stderr, \"Could not save side-by-side image at %s\\n\", qPrintable(sideBySideFileName));\n", ' ' , "return EXIT_FAILURE;\n", ' ' , "}\n }\n } else {\n fprintf(stderr, \"Unknown command %s\\n\", qPrintable(commandAsString));\n return EXIT_FAILURE;\n }\n\n return EXIT_SUCCESS;\n}\n\n", size = 3764}, static _empty = 0 '\000'}, revision = 1, snapshot = {m_deps = {files = {> = {> = {}, }, d = {d = 0x7b79f64a7140, ptr = 0x7b79f64a7150, size = 1230}}, fileIndex = {d = 0x7b79f44c24f0}, includes = {d = 0x7b79f5d4d970}, includeMap = {> = {> = {}, }, d = {d = 0x7b79f64047e0, ptr = 0x7b79f64047f0, size = 1230}}}, _documents = {d = 0x7b79f414c860}}, force = false} openDocuments = {> = {> = {}, }, d = {d = 0x61987de4f8a0, ptr = 0x61987de4f8b0, size = 13}} #5 0x00007b7aa373c51b in QtPrivate::FunctorCall, QtPrivate::List, CPlusPlus::Snapshot>, void, void (CppEditor::BuiltinEditorDocumentProcessor::*)(QSharedPointer, CPlusPlus::Snapshot)>::call(void (CppEditor::BuiltinEditorDocumentProcessor::*)(QSharedPointer, CPlusPlus::Snapshot), CppEditor::BuiltinEditorDocumentProcessor*, void**)::{lambda()#1}::operator()() const (__closure=0x7ffcc0ac5860) at /home/qtrob/dev/src/qt-6.9.3/qtbase/src/corelib/kernel/qobjectdefs_impl.h:127 arg = @0x7ffcc0ac5840: 0x7b79f45dcf08 f = @0x7ffcc0ac5850: (void (CppEditor::BuiltinEditorDocumentProcessor::*)(CppEditor::BuiltinEditorDocumentProcessor * const, QSharedPointer, CPlusPlus::Snapshot)) 0x7b7aa373125c , CPlusPlus::Snapshot)> o = @0x7ffcc0ac5848: 0x6198803ad0c0 #6 0x00007b7aa373d65c in QtPrivate::FunctorCallBase::call_internal, QtPrivate::List, CPlusPlus::Snapshot>, void, void (CppEditor::BuiltinEditorDocumentProcessor::*)(QSharedPointer, CPlusPlus::Snapshot)>::call(void (CppEditor::BuiltinEditorDocumentProcessor::*)(QSharedPointer, CPlusPlus::Snapshot), CppEditor::BuiltinEditorDocumentProcessor*, void**)::{lambda()#1}>(void**, QtPrivate::FunctorCall, QtPrivate::List, CPlusPlus::Snapshot>, void, void (CppEditor::BuiltinEditorDocumentProcessor::*)(QSharedPointer, CPlusPlus::Snapshot)>::call(void (CppEditor::BuiltinEditorDocumentProcessor::*)(QSharedPointer, CPlusPlus::Snapshot), CppEditor::BuiltinEditorDocumentProcessor*, void**)::{lambda()#1}&&) (args=0x7b79f45dcf08, fn=...) at /home/qtrob/dev/src/qt-6.9.3/qtbase/src/corelib/kernel/qobjectdefs_impl.h:65 No locals. #7 0x00007b7aa373c602 in QtPrivate::FunctorCall, QtPrivate::List, CPlusPlus::Snapshot>, void, void (CppEditor::BuiltinEditorDocumentProcessor::*)(QSharedPointer, CPlusPlus::Snapshot)>::call (f=(void (CppEditor::BuiltinEditorDocumentProcessor::*)(class CppEditor::BuiltinEditorDocumentProcessor * const, class QSharedPointer, class CPlusPlus::Snapshot)) 0x7b7aa373125c , CPlusPlus::Snapshot)>, o=0x6198803ad0c0, arg=0x7b79f45dcf08) at /home/qtrob/dev/src/qt-6.9.3/qtbase/src/corelib/kernel/qobjectdefs_impl.h:126 No locals. #8 0x00007b7aa373a984 in QtPrivate::FunctionPointer, CPlusPlus::Snapshot)>::call, CPlusPlus::Snapshot>, void> (f=(void (CppEditor::BuiltinEditorDocumentProcessor::*)(class CppEditor::BuiltinEditorDocumentProcessor * const, class QSharedPointer, class CPlusPlus::Snapshot)) 0x7b7aa373125c , CPlusPlus::Snapshot)>, o=0x6198803ad0c0, arg=0x7b79f45dcf08) at /home/qtrob/dev/src/qt-6.9.3/qtbase/src/corelib/kernel/qobjectdefs_impl.h:174 No locals. #9 0x00007b7aa3738e5b in QtPrivate::QCallableObject, CPlusPlus::Snapshot), QtPrivate::List, CPlusPlus::Snapshot>, void>::impl (which=1, this_=0x6198803b0740, r=0x6198803ad0c0, a=0x7b79f45dcf08, ret=0x0) at /home/qtrob/dev/src/qt-6.9.3/qtbase/src/corelib/kernel/qobjectdefs_impl.h:545 that = 0x6198803b0740 #10 0x00007b7ace1e419a in QObject::event(QEvent*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #11 0x00007b7acf78e90a in QApplicationPrivate::notify_helper(QObject*, QEvent*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Widgets.so.6 No symbol table info available. #12 0x00007b7ace18dc78 in QCoreApplication::notifyInternal2(QObject*, QEvent*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #13 0x00007b7ace1918b6 in QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #14 0x00007b7ace484577 in postEventSourceDispatch(_GSource*, int (*)(void*), void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #15 0x00007b7acdf145c5 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #16 0x00007b7acdf73737 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #17 0x00007b7acdf13a63 in g_main_context_iteration () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #18 0x00007b7ace483cb0 in QEventDispatcherGlib::processEvents(QFlags) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #19 0x00007b7ace19aa0b in QEventLoop::exec(QFlags) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #20 0x00007b7ace1962da in QCoreApplication::exec() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #21 0x0000619845bdde2c in main (argc=1, argv=0x7ffcc0ac6628) at /home/qtrob/dev/src/creator-17/src/app/main.cpp:1021 restarter = {m_executable = {d = {d = 0x6198781a30a0, ptr = 0x6198781a30b0 u"bin/qtcreator", size = 13}, static _empty = 0 u'\000'}, m_args = {> = {> = {}, }, d = {d = 0x61987867bf10, ptr = 0x61987867bf20, size = 1}}, m_workingPath = {d = {d = 0x6198781a3170, ptr = 0x6198781a3180 u"/home/qtrob/dev/g++-13.3.0/creator-17-6.9.3-d", size = 45}, static _empty = 0 u'\000'}} fileSystemEngine = {m_engineHandler = std::unique_ptr = {get() = 0x6198781a5020}} options = {settingsPath = {d = {d = 0x0, ptr = 0x0, size = 0}, static _empty = 0 u'\000'}, installSettingsPath = {d = {d = 0x0, ptr = 0x0, size = 0}, static _empty = 0 u'\000'}, customPluginPaths = {> = {> = {}, }, d = {d = 0x0, ptr = 0x0, size = 0}}, uiLanguage = {d = {d = 0x0, ptr = 0x0, size = 0}, static _empty = 0 u'\000'}, singleAppIdPostfix = {d = {d = 0x0, ptr = 0x0, size = 0}, static _empty = 0 u'\000'}, preAppArguments = {> = {> = {}, }, d = {d = 0x0, ptr = 0x0, size = 0}}, appArguments = std::vector of length 1, capacity 1 = {0x7ffcc0ac718c "bin/qtcreator"}, userLibraryPath = std::optional [no contained value], hasTestOption = false, wantsCleanSettings = false, hasStyleOption = false} specialItems = {> = {> = {}, }, d = {d = 0x0, ptr = 0x0, size = 0}} diff = {> = {> = {}, }, d = {d = 0x0, ptr = 0x0, size = 0}} restoreEnvVarFromSquish = {} temporaryCleanSettingsDir = {d = 0x0} numberOfArguments = 1 handler = std::unique_ptr = {get() = 0x0} singleAppId = {d = {d = 0x6198781f5280, ptr = 0x6198781f5290 u"Qt Creator", size = 10}, static _empty = 0 u'\000'} appPtr = std::unique_ptr = {get() = 0x6198781aa3d0} app = @0x6198781aa3d0: { = {}, static staticMetaObject = {d = {superdata = {direct = 0x7b7acfd680a0 }, stringdata = 0x619845c0d34c +140>, data = 0x619845c0d2c0 >, static_metacall = 0x619845bff5bc , relatedMetaObjects = 0x0, metaTypes = 0x619845c24ea0 >, extradata = 0x0}}, firstPeer = -1, instances = 0x0, pidPeer = 0x0, actWin = 0x0, appId = {d = {d = 0x6198781f5280, ptr = 0x6198781f5290 u"Qt Creator", size = 10}}, block = false} cleanup = {m_func = {}, m_invoke = true} pluginArguments = {> = {> = {}, }, d = {d = 0x619878468630, ptr = 0x619878468640, size = 1}} installPluginPaths = {> = {> = {}, }, d = {d = 0x0, ptr = 0x0, size = 0}} settings = 0x6198784790a0 installSettings = 0x619878479180 threadCount = 8 appDirPath = {m_data = {d = {d = 0x619878483d00, ptr = 0x619878483d10 u"/home/qtrob/dev/g++-13.3.0/creator-17-6.9.3-d/bin", size = 49}, static _empty = 0 u'\000'}, m_pathLen = 49, m_schemeLen = 0, m_hostLen = 0, m_hash = 0} info = {author = {d = {d = 0x619878478f30, ptr = 0x619878478f40 u"The Qt Company Ltd. and other contributors.", size = 43}, static _empty = 0 u'\000'}, copyright = {d = {d = 0x619878485ed0, ptr = 0x619878485ee0 u"Copyright (C) The Qt Company Ltd. and other contributors.", size = 57}, static _empty = 0 u'\000'}, displayVersion = {d = {d = 0x6198784d4f60, ptr = 0x6198784d4f70 u"17.0.2", size = 6}, static _empty = 0 u'\000'}, id = {d = {d = 0x6198784d4dc0, ptr = 0x6198784d4dd0 u"qtcreator", size = 9}, static _empty = 0 u'\000'}, revision = {d = {d = 0x0, ptr = 0x7b7ace5140ca u"", size = 0}, static _empty = 0 u'\000'}, revisionUrl = {d = {d = 0x0, ptr = 0x7b7ace5140ca u"", size = 0}, static _empty = 0 u'\000'}, userFileExtension = {d = {d = 0x6198784d4d10, ptr = 0x6198784d4d20 u".user", size = 5}, static _empty = 0 u'\000'}, plugins = {m_data = {d = {d = 0x6198781a6850, ptr = 0x6198781a6860 u"/home/qtrob/dev/g++-13.3.0/creator-17-6.9.3-d/lib/qtcreator/plugins", size = 67}, static _empty = 0 u'\000'}, m_pathLen = 67, m_schemeLen = 0, m_hostLen = 0, m_hash = 0}, userPluginsRoot = {m_data = {d = {d = 0x61987848a210, ptr = 0x61987848a220 u"/home/qtrob/.local/share/data/QtProject/qtcreator/plugins/17.0.2", size = 64}, static _empty = 0 u'\000'}, m_pathLen = 64, m_schemeLen = 0, m_hostLen = 0, m_hash = 0}, luaPlugins = {m_data = {d = {d = 0x619878487500, ptr = 0x619878487510 u"/home/qtrob/dev/g++-13.3.0/creator-17-6.9.3-d/share/qtcreator/lua-plugins", size = 73}, static _empty = 0 u'\000'}, m_pathLen = 73, m_schemeLen = 0, m_hostLen = 0, m_hash = 0}, userLuaPlugins = {m_data = {d = {d = 0x619878482210, ptr = 0x619878482220 u"/home/qtrob/.config/QtProject/qtcreator/lua-plugins", size = 51}, static _empty = 0 u'\000'}, m_pathLen = 51, m_schemeLen = 0, m_hostLen = 0, m_hash = 0}, resources = {m_data = {d = {d = 0x619878297f10, ptr = 0x619878297f20 u"/home/qtrob/dev/g++-13.3.0/creator-17-6.9.3-d/share/qtcreator", size = 61}, static _empty = 0 u'\000'}, m_pathLen = 61, m_schemeLen = 0, m_hostLen = 0, m_hash = 0}, userResources = {m_data = {d = {d = 0x6198784e5380, ptr = 0x6198784e5390 u"/home/qtrob/.config/QtProject/qtcreator", size = 39}, static _empty = 0 u'\000'}, m_pathLen = 39, m_schemeLen = 0, m_hostLen = 0, m_hash = 0}, crashReports = {m_data = {d = {d = 0x6198784822a0, ptr = 0x6198784822b0 u"/home/qtrob/.config/QtProject/qtcreator/crashpad_reports", size = 56}, static _empty = 0 u'\000'}, m_pathLen = 56, m_schemeLen = 0, m_hostLen = 0, m_hash = 0}, libexec = {m_data = {d = {d = 0x61987848a320, ptr = 0x61987848a330 u"/home/qtrob/dev/g++-13.3.0/creator-17-6.9.3-d/libexec/qtcreator", size = 63}, static _empty = 0 u'\000'}, m_pathLen = 63, m_schemeLen = 0, m_hostLen = 0, m_hash = 0}} setupCrashHandler = {} crashReportingEnabled = false pluginManager = { = {}, static staticMetaObject = {d = {superdata = {direct = 0x7b7ace675660 }, stringdata = 0x7b7ad0b702c4 +260>, data = 0x7b7ad0b701c0 >, static_metacall = 0x7b7ad0b66b8e , relatedMetaObjects = 0x0, metaTypes = 0x7b7ad0bb2a00 >, extradata = 0x0}}} translator = qtTranslator = uiLanguages = {> = {> = {}, }, d = {d = 0x619878487610, ptr = 0x619878487668, size = 4}} overrideLanguage = {d = {d = 0x0, ptr = 0x0, size = 0}, static _empty = 0 u'\000'} creatorTrPath = @0x7ffcc0ac5fc0: {d = {d = 0x619878496fe0, ptr = 0x619878496ff0 u"/home/qtrob/dev/g++-13.3.0/creator-17-6.9.3-d/share/qtcreator/translations", size = 74}, static _empty = 0 u'\000'} overrideCodecForLocale = {d = {d = 0x6198784d5900, ptr = 0x6198784d5910 "UTF-8", size = 5}, static _empty = 0 '\000'} pluginPaths = {> = {> = {}, }, d = {d = 0x0, ptr = 0x0, size = 0}} foundAppOptions = {d = {d = {ptr = 0x0}}} settingspath = {d = {d = 0x0, ptr = 0x0, size = 0}, static _empty = 0 u'\000'} processData = {m_executable = {d = {d = 0x6198781a30a0, ptr = 0x6198781a30b0 u"bin/qtcreator", size = 13}, static _empty = 0 u'\000'}, m_args = {> = {> = {}, }, d = {d = 0x0, ptr = 0x0, size = 0}}, m_workingPath = {d = {d = 0x6198781a3170, ptr = 0x6198781a3180 u"/home/qtrob/dev/g++-13.3.0/creator-17-6.9.3-d", size = 45}, static _empty = 0 u'\000'}, m_settingsPath = {d = {d = 0x0, ptr = 0x0, size = 0}, static _empty = 0 u'\000'}} coreplugin = 0x6198785206f0 pid = -1 isBlock = false exitCode = 0 Thread 2 (Thread 0x7b7ac9fda6c0 (LWP 643507)): #0 0x00007b7acd91b4fd in __GI___poll (fds=0x61987820aa40, nfds=3, timeout=-1) at ../sysdeps/unix/sysv/linux/poll.c:29 sc_ret = -516 sc_cancel_oldtype = 0 sc_ret = #1 0x00007b7acdf7368e in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #2 0x00007b7acdf13a63 in g_main_context_iteration () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #3 0x00007b7ace483cb0 in QEventDispatcherGlib::processEvents(QFlags) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #4 0x00007b7ace19aa0b in QEventLoop::exec(QFlags) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #5 0x00007b7ace2a9126 in QThread::exec() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7acdb6c4ae in QDBusConnectionManager::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6DBus.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135767305070272, -4972878651480077115, 135767305070272, -384, 2, 140723541004480, -4972878651534603067, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 3 (Thread 0x7b7ac8fb46c0 (LWP 643509)): #0 0x00007b7acd91b4fd in __GI___poll (fds=0x7b7ac8fb3be0, nfds=2, timeout=-1) at ../sysdeps/unix/sysv/linux/poll.c:29 sc_ret = -516 sc_cancel_oldtype = 0 sc_ret = #1 0x00007b7aca695469 in QtWaylandClient::EventThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/plugins/platforms/../../lib/libQt6WaylandClient.so.6 No symbol table info available. #2 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #3 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135767288137408, -4972876432055726907, 135767288137408, -384, 2, 140723541005888, -4972876432110252859, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #4 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 4 (Thread 0x7b7ac97b56c0 (LWP 643508)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x61987820b3e4) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x61987820b3e4) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 393 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x61987820b3e4, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89b7ed in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x61987820b390, cond=0x61987820b3b8) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7ac97b4ae0, __canceltype = -914666576, __prev = 0x0} cbuffer = {wseq = 4691, cond = 0x61987820b3b8, mutex = 0x61987820b390, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 4691 seq = 2345 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_wait (cond=0x61987820b3b8, mutex=0x61987820b390) at ./nptl/pthread_cond_wait.c:627 No locals. #5 0x00007b7ace35575b in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7aca6953ef in QtWaylandClient::EventThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/plugins/platforms/../../lib/libQt6WaylandClient.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135767296530112, -4972879731127481147, 135767296530112, -384, 2, 140723541005744, -4972879731182007099, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 5 (Thread 0x7b7aabfff6c0 (LWP 643512)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x6198782df960) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x6198782df960) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 393 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x6198782df960, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89b7ed in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x6198782df908, cond=0x6198782df938) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7aabffeae0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 0, cond = 0x6198782df938, mutex = 0x6198782df908, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 0 seq = 0 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_wait (cond=0x6198782df938, mutex=0x6198782df908) at ./nptl/pthread_cond_wait.c:627 No locals. #5 0x00007b7ab9b9359d in ?? () from /lib/x86_64-linux-gnu/libgallium-25.0.7-0ubuntu0.24.04.2.so No symbol table info available. #6 0x00007b7ab9b6054b in ?? () from /lib/x86_64-linux-gnu/libgallium-25.0.7-0ubuntu0.24.04.2.so No symbol table info available. #7 0x00007b7ab9b934cc in ?? () from /lib/x86_64-linux-gnu/libgallium-25.0.7-0ubuntu0.24.04.2.so No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135766801905344, -4973085379530322747, 135766801905344, -384, 19, 140723541004208, -4973085379584848699, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 6 (Thread 0x7b7a5bfff6c0 (LWP 643527)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=24984, cancel=true, abstime=0x7b7a5bffeb50, op=137, expected=0, futex_word=0x6198792a2d14) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=24984, abstime=0x7b7a5bffeb50, clockid=31610, expected=0, futex_word=0x6198792a2d14) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x6198792a2d14, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a5bffeb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a5bffeb50, clockid=1, mutex=0x6198792a2cc0, cond=0x6198792a2ce8) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a5bffead0, __canceltype = 1543498464, __prev = 0x0} cbuffer = {wseq = 23, cond = 0x6198792a2ce8, mutex = 0x6198792a2cc0, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 23 seq = 11 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x6198792a2ce8, mutex=0x6198792a2cc0, abstime=0x7b7a5bffeb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135765459728064, -4972557613948990267, 135765459728064, -384, 17, 140723541001776, -4972557614003516219, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 7 (Thread 0x7b7a21ffb6c0 (LWP 643618)): #0 __memcpy_sse2_unaligned_erms () at ../sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S:462 No locals. #1 0x00007b7ace287898 in QString::QString(QChar const*, long long) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #2 0x00007b7ad01ac345 in QString::QString (this=0x7b7a21ffa410, sv=...) at /home/qtrob/dev/src/qt-6.9.3/qtbase/src/corelib/text/qstring.h:214 No locals. #3 0x00007b7ad01ac658 in QStringView::toString (this=0x7b7a21ffa340) at /home/qtrob/dev/src/qt-6.9.3/qtbase/src/corelib/text/qstring.h:1208 No locals. #4 0x00007b7ad019b03e in Utils::FilePath::path (this=0x7b79f6422eb0) at /home/qtrob/dev/src/creator-17/src/libs/utils/filepath.cpp:590 No locals. #5 0x00007b7aa33eac79 in CPlusPlus::FastPreprocessor::run (this=this@entry=0x7b7a21ffa530, newDoc=..., source=..., mergeDefinedMacrosOfDocument=) at /home/qtrob/dev/src/creator-17/src/libs/cplusplus/FastPreprocessor.cpp:36 i = {i = {d = 0x7b79f414c860, bucket = 238}} ei = {i = {d = 0x0, bucket = 0}} includes = doc = {value = {ptr = 0x7b79f4411a10}, d = 0x7b79f4290540} filePath = {m_data = {d = {d = 0x7b79a1af31b0, ptr = 0x7b79a1af31c0 u"/home/qtrob/dev/src/qt-dev_09.24-base_imageformats_svg/qtsvg/tests/manual/rendertestsuite/main.cpp", size = 98}}, m_pathLen = 98, m_schemeLen = 0, m_hostLen = 0, m_hash = 13103483740352902021} preprocessed = {d = {d = 0x0, ptr = 0xd8d3bc433f434300 , size = 0}, static _empty = 0 '\000'} #6 0x00007b7aa33c9366 in CPlusPlus::Snapshot::preprocessedDocument (this=0x7b7a21ffa818, source=..., filePath=..., expandFunctionLikeMacros=true, withDefinedMacrosFromDocumentUntilLine=) at /home/qtrob/dev/src/creator-17/src/libs/cplusplus/CppDocument.cpp:757 newDoc = {value = {ptr = 0x7b79a3562c70}, d = 0x7b79a265b060} pp = { = {_vptr.Client = 0x7b7aa34e1f88 }, _env = {currentFile = {d = {d = 0x0, ptr = 0x0, size = 0}}, currentFileUtf8 = {d = {d = 0x0, ptr = 0x0, size = 0}, static _empty = 0 '\000'}, currentLine = 0, hideNext = false, _macros = 0x0, _allocated_macros = 0, _macro_count = -1, _hash = 0x0, _hash_count = 401}, _snapshot = {m_deps = {files = {> = {> = {}, }, d = {d = 0x7b79f64a7140, ptr = 0x7b79f64a7150, size = 1230}}, fileIndex = {d = 0x7b79f44c24f0}, includes = {d = 0x7b79f5d4d970}, includeMap = {> = {> = {}, }, d = {d = 0x7b79f64047e0, ptr = 0x7b79f64047f0, size = 1230}}}, _documents = {d = 0x7b79f414c860}}, _preproc = {m_client = 0x7b7a21ffa530, m_env = 0x7b7a21ffa538, m_scratchBuffer = {d = {d = 0x7b79a2d9c050, ptr = 0x7b79a2d9c060 "", size = 0}, static _empty = 0 '\000'}, m_cancelChecker = {> = {}, = {static _M_max_size = 16, static _M_max_align = 8, _M_functor = {_M_unused = {_M_object = 0x0, _M_const_object = 0x0, _M_function_pointer = 0x0, _M_member_pointer = NULL}, _M_pod_data = '\000' }, _M_manager = 0x0}, _M_invoker = 0x0}, m_includeDepthGuard = {m_lockCount = 0}, m_expandFunctionlikeMacros = true, m_keepComments = true, m_state = {m_currentFileName = {d = {d = 0x0, ptr = 0x0, size = 0}}, m_source = {d = {d = 0x0, ptr = 0x0, size = 0}, static _empty = 0 '\000'}, m_lexer = 0x0, m_skipping = {d = {d = {d = 0x7b79a1f38490, ptr = 0x7b79a1f384a0 "\b", size = 65}, static _empty = 0 '\000'}}, m_trueTest = {d = {d = {d = 0x7b79a36e2be0, ptr = 0x7b79a36e2bf0 "\b", size = 65}, static _empty = 0 '\000'}}, m_ifLevel = 0, m_tokenBufferDepth = 0, m_tokenBuffer = 0x0, m_inPreprocessorDirective = false, m_markExpandedTokens = true, m_noLines = false, m_inCondition = false, m_bytesOffsetRef = 0, m_utf16charsOffsetRef = 0, m_result = 0x0, m_lineRef = 1, m_expansionStatus = CPlusPlus::Preprocessor::NotExpanding, m_currentExpansion = 0x0, m_expansionResult = {d = {d = 0x7b7a040d40c0, ptr = 0x7b7a040d40d0 "", size = 0}, static _empty = 0 '\000'}, m_expandedTokensInfo = { >> = { >> = {}, }, d = {d = 0x0, ptr = 0x0, size = 0}}, m_includeGuardState = CPlusPlus::Preprocessor::State::IncludeGuardState_BeforeIfndef, m_includeGuardMacroName = {d = {d = 0x0, ptr = 0x0, size = 0}, static _empty = 0 '\000'}}}, _merged = {q_hash = {d = 0x7b79a250bfa0}}, _currentDoc = {value = {ptr = 0x7b79a3562c70}, d = 0x7b79a265b060}, _addIncludesToCurrentDoc = false, _expandFunctionLikeMacros = true} mergeDefinedMacrosOfDocument = preprocessedCode = {d = {d = 0x0, ptr = 0xd8d3bc433f434300 , size = 0}, static _empty = 0 '\000'} #7 0x00007b7aa39d7c1b in CppEditor::doUpdate (promise=..., source=...) at /home/qtrob/dev/src/creator-17/src/plugins/cppeditor/cppsemanticinfoupdater.cpp:63 newSemanticInfo = {revision = 1, complete = true, snapshot = {m_deps = {files = {> = {> = {}, }, d = {d = 0x7b79f64a7140, ptr = 0x7b79f64a7150, size = 1230}}, fileIndex = {d = 0x7b79f44c24f0}, includes = {d = 0x7b79f5d4d970}, includeMap = {> = {> = {}, }, d = {d = 0x7b79f64047e0, ptr = 0x7b79f64047f0, size = 1230}}}, _documents = {d = 0x7b79f414c860}}, doc = {value = {ptr = 0x0}, d = 0x0}, localUsesUpdated = false, localUses = {d = 0x0}} doc = {value = {ptr = 0x7b79a3562c70}, d = 0x7b79a265b060} processor = { = {_vptr.TopLevelDeclarationProcessor = 0x7b7aa3e60550 }, m_future = {d = }} __PRETTY_FUNCTION__ = "void CppEditor::doUpdate(QPromise&, const SemanticInfo::Source&)" #8 0x00007b7aa39dc563 in std::__invoke_impl&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source&> (__f=@0x7b7a21ffa988: 0x7b7aa39d7b57 &, CppEditor::SemanticInfo::Source const&)>) at /usr/include/c++/13/bits/invoke.h:61 No locals. #9 0x00007b7aa39dc4a6 in std::__invoke&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source&> (__fn=@0x7b7a21ffa988: 0x7b7aa39d7b57 &, CppEditor::SemanticInfo::Source const&)>) at /usr/include/c++/13/bits/invoke.h:96 No locals. #10 0x00007b7aa39dc2be in std::invoke&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source&> (__fn=@0x7b7a21ffa988: 0x7b7aa39d7b57 &, CppEditor::SemanticInfo::Source const&)>) at /usr/include/c++/13/functional:113 No locals. #11 0x00007b7aa39dc15b in QtConcurrent::NonMemberFunctionResolver&, CppEditor::SemanticInfo::Source const&), CppEditor::SemanticInfo, CppEditor::SemanticInfo::Source>::invoke (function=0x7b7aa39d7b57 &, CppEditor::SemanticInfo::Source const&)>, promise=..., args#0=...) at /home/qtrob/dev/src/qt-6.9.3/qtbase/src/concurrent/qtconcurrentstoredfunctioncall.h:37 No locals. #12 0x00007b7aa39dc3c8 in std::__invoke_impl&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source), void (*)(QPromise&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source> (__f=@0x7b7aa39dc12c: {void (void (*)(class QPromise &, const struct CppEditor::SemanticInfo::Source &), class QPromise &, struct CppEditor::SemanticInfo::Source)} 0x7b7aa39dc12c &, CppEditor::SemanticInfo::Source const&), CppEditor::SemanticInfo, CppEditor::SemanticInfo::Source>::invoke(void (*)(QPromise&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source)>) at /usr/include/c++/13/bits/invoke.h:61 No locals. #13 0x00007b7aa39dc25f in std::__invoke&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source), void (*)(QPromise&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source> (__fn=@0x7b7aa39dc12c: {void (void (*)(class QPromise &, const struct CppEditor::SemanticInfo::Source &), class QPromise &, struct CppEditor::SemanticInfo::Source)} 0x7b7aa39dc12c &, CppEditor::SemanticInfo::Source const&), CppEditor::SemanticInfo, CppEditor::SemanticInfo::Source>::invoke(void (*)(QPromise&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source)>) at /usr/include/c++/13/bits/invoke.h:96 No locals. #14 0x00007b7aa39dc01a in std::__apply_impl&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source), std::tuple&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source>, 0ul, 1ul, 2ul> (__f=@0x7b7aa39dc12c: {void (void (*)(class QPromise &, const struct CppEditor::SemanticInfo::Source &), class QPromise &, struct CppEditor::SemanticInfo::Source)} 0x7b7aa39dc12c &, CppEditor::SemanticInfo::Source const&), CppEditor::SemanticInfo, CppEditor::SemanticInfo::Source>::invoke(void (*)(QPromise&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source)>, __t=...) at /usr/include/c++/13/tuple:2302 No locals. #15 0x00007b7aa39dc061 in std::apply&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source), std::tuple&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source> > (__f=@0x7b7aa39dc12c: {void (void (*)(class QPromise &, const struct CppEditor::SemanticInfo::Source &), class QPromise &, struct CppEditor::SemanticInfo::Source)} 0x7b7aa39dc12c &, CppEditor::SemanticInfo::Source const&), CppEditor::SemanticInfo, CppEditor::SemanticInfo::Source>::invoke(void (*)(QPromise&, CppEditor::SemanticInfo::Source const&), QPromise&, CppEditor::SemanticInfo::Source)>, __t=...) at /usr/include/c++/13/tuple:2313 No locals. #16 0x00007b7aa39dc09a in QtConcurrent::StoredFunctionCallWithPromise&, CppEditor::SemanticInfo::Source const&), CppEditor::SemanticInfo, CppEditor::SemanticInfo::Source>::runFunctor (this=0x61987d2b9f70) at /home/qtrob/dev/src/qt-6.9.3/qtbase/src/concurrent/qtconcurrentstoredfunctioncall.h:156 No locals. #17 0x00007b7aa39dbe6e in QtConcurrent::RunFunctionTaskBase::run (this=0x61987d2b9f70) at /home/qtrob/dev/src/qt-6.9.3/qtbase/src/concurrent/qtconcurrentrunbase.h:84 No locals. #18 0x00007b7ace351e35 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #19 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #20 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135764486633152, -4972790708266595131, 135764486633152, -384, 2, 140723540999056, -4972790708321121083, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #21 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 8 (Thread 0x7b7a7dffb6c0 (LWP 643524)): #0 0x00007b7acd91b4fd in __GI___poll (fds=0x619879276d80, nfds=2, timeout=-1) at ../sysdeps/unix/sysv/linux/poll.c:29 sc_ret = -516 sc_cancel_oldtype = 0 sc_ret = #1 0x00007b7acdf7368e in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #2 0x00007b7acdf13a63 in g_main_context_iteration () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #3 0x00007b7ace483cb0 in QEventDispatcherGlib::processEvents(QFlags) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #4 0x00007b7ace19aa0b in QEventLoop::exec(QFlags) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #5 0x00007b7ace2a9126 in QThread::exec() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135766030137024, -4972641174685217595, 135766030137024, -384, 17, 140723541004832, -4972641174739743547, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #8 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 9 (Thread 0x7b7a477fe6c0 (LWP 643547)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7b7a477fdb50, op=137, expected=0, futex_word=0x619879e52d34) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x7b7a477fdb50, clockid=0, expected=0, futex_word=0x619879e52d34) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879e52d34, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a477fdb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a477fdb50, clockid=1, mutex=0x619879e52ce0, cond=0x619879e52d08) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a477fdad0, __canceltype = 1199561472, __prev = 0x0} cbuffer = {wseq = 16267, cond = 0x619879e52d08, mutex = 0x619879e52ce0, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 16267 seq = 8133 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619879e52d08, mutex=0x619879e52ce0, abstime=0x7b7a477fdb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135765115791040, -4972585101202813755, 135765115791040, -384, 2, 140723540985152, -4972585101257339707, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 10 (Thread 0x7b7a457fa6c0 (LWP 643552)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=24984, cancel=true, abstime=0x7b7a457f9b50, op=137, expected=0, futex_word=0x619879e766b0) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=24984, abstime=0x7b7a457f9b50, clockid=31610, expected=0, futex_word=0x619879e766b0) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879e766b0, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a457f9b50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a457f9b50, clockid=1, mutex=0x619879e76660, cond=0x619879e76688) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a457f9ad0, __canceltype = 1165990624, __prev = 0x0} cbuffer = {wseq = 16, cond = 0x619879e76688, mutex = 0x619879e76660, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 16 seq = 8 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619879e76688, mutex=0x619879e76660, abstime=0x7b7a457f9b50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135765082220224, -4972589497101841211, 135765082220224, -384, 22, 140723541001360, -4972589497156367163, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 11 (Thread 0x7b7aab7fe6c0 (LWP 643513)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x6198783e36b0) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x6198783e36b0) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 393 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x6198783e36b0, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89b7ed in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x6198783e3658, cond=0x6198783e3688) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7aab7fdae0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 0, cond = 0x6198783e3688, mutex = 0x6198783e3658, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 0 seq = 0 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_wait (cond=0x6198783e3688, mutex=0x6198783e3658) at ./nptl/pthread_cond_wait.c:627 No locals. #5 0x00007b7ab9b9359d in ?? () from /lib/x86_64-linux-gnu/libgallium-25.0.7-0ubuntu0.24.04.2.so No symbol table info available. #6 0x00007b7ab9b6054b in ?? () from /lib/x86_64-linux-gnu/libgallium-25.0.7-0ubuntu0.24.04.2.so No symbol table info available. #7 0x00007b7ab9b934cc in ?? () from /lib/x86_64-linux-gnu/libgallium-25.0.7-0ubuntu0.24.04.2.so No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135766793512640, -4973086478505079611, 135766793512640, -384, 19, 140723541004464, -4973086478559605563, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 12 (Thread 0x7b7a03fff6c0 (LWP 643577)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a03ffeb50, op=137, expected=0, futex_word=0x7b7a240043b0) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a03ffeb50, clockid=31610, expected=0, futex_word=0x7b7a240043b0) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b7a240043b0, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a03ffeb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a03ffeb50, clockid=1, mutex=0x7b7a24004360, cond=0x7b7a24004388) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a03ffead0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 88, cond = 0x7b7a24004388, mutex = 0x7b7a24004360, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 88 seq = 44 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b7a24004388, mutex=0x7b7a24004360, abstime=0x7b7a03ffeb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763983333056, -4972715943623390011, 135763983333056, -384, 0, 135765082213184, -4972715943677915963, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 13 (Thread 0x7b7a5a7fc6c0 (LWP 643545)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a5a7fbb50, op=137, expected=0, futex_word=0x619879e81614) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a5a7fbb50, clockid=0, expected=0, futex_word=0x619879e81614) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879e81614, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a5a7fbb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a5a7fbb50, clockid=1, mutex=0x619879e815c0, cond=0x619879e815e8) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a5a7fbad0, __canceltype = 1073745744, __prev = 0x0} cbuffer = {wseq = 16335, cond = 0x619879e815e8, mutex = 0x619879e815c0, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 16335 seq = 8167 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619879e815e8, mutex=0x619879e815c0, abstime=0x7b7a5a7fbb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135765434549952, -4972556512826749755, 135765434549952, -384, 2, 140723540985152, -4972556512881275707, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 14 (Thread 0x7b7a7e7fc6c0 (LWP 643523)): #0 0x00007b7acd91b4fd in __GI___poll (fds=0x619879093720, nfds=1, timeout=-1) at ../sysdeps/unix/sysv/linux/poll.c:29 sc_ret = -516 sc_cancel_oldtype = 0 sc_ret = #1 0x00007b7acdf7368e in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #2 0x00007b7acdf13a63 in g_main_context_iteration () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #3 0x00007b7ace483cb0 in QEventDispatcherGlib::processEvents(QFlags) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #4 0x00007b7ace19aa0b in QEventLoop::exec(QFlags) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #5 0x00007b7ace2a9126 in QThread::exec() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135766038529728, -4972635677663949627, 135766038529728, -384, 17, 140723541005472, -4972635677718475579, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #8 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 15 (Thread 0x7b7a44ff96c0 (LWP 643554)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=24984, cancel=true, abstime=0x7b7a44ff8b50, op=137, expected=0, futex_word=0x619879e776b4) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=24984, abstime=0x7b7a44ff8b50, clockid=31610, expected=0, futex_word=0x619879e776b4) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879e776b4, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a44ff8b50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a44ff8b50, clockid=1, mutex=0x619879e77660, cond=0x619879e77688) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a44ff8ad0, __canceltype = 1157597920, __prev = 0x0} cbuffer = {wseq = 15, cond = 0x619879e77688, mutex = 0x619879e77660, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 15 seq = 7 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619879e77688, mutex=0x619879e77660, abstime=0x7b7a44ff8b50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135765073827520, -4972586198030086971, 135765073827520, -384, 22, 140723541001360, -4972586198084612923, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 16 (Thread 0x7b7a237fe6c0 (LWP 643556)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a237fdb50, op=137, expected=0, futex_word=0x619879e783f4) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a237fdb50, clockid=0, expected=0, futex_word=0x619879e783f4) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879e783f4, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a237fdb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a237fdb50, clockid=1, mutex=0x619879e783a0, cond=0x619879e783c8) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a237fdad0, __canceltype = 595581664, __prev = 0x0} cbuffer = {wseq = 15, cond = 0x619879e783c8, mutex = 0x619879e783a0, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 15 seq = 7 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619879e783c8, mutex=0x619879e783a0, abstime=0x7b7a237fdb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135764511811264, -4972787411342324539, 135764511811264, -384, 22, 140723541001360, -4972787411396850491, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 17 (Thread 0x7b7a47fff6c0 (LWP 643546)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7b7a47ffeb50, op=137, expected=0, futex_word=0x619878218eb0) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x7b7a47ffeb50, clockid=0, expected=0, futex_word=0x619878218eb0) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619878218eb0, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a47ffeb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a47ffeb50, clockid=1, mutex=0x619878218e60, cond=0x619878218e88) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a47ffead0, __canceltype = 1207954176, __prev = 0x0} cbuffer = {wseq = 16732, cond = 0x619878218e88, mutex = 0x619878218e60, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 16732 seq = 8366 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619878218e88, mutex=0x619878218e60, abstime=0x7b7a47ffeb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135765124183744, -4972584002228056891, 135765124183744, -384, 2, 140723540985152, -4972584002282582843, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 18 (Thread 0x7b79f3fff6c0 (LWP 643586)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31609, cancel=true, abstime=0x7b79f3ffeb50, op=137, expected=0, futex_word=0x7b79d8001b90) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31609, abstime=0x7b79f3ffeb50, clockid=31609, expected=0, futex_word=0x7b79d8001b90) at ./nptl/futex-internal.c:87 err = clockbit = 8091648 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79d8001b90, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b79f3ffeb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b79f3ffeb50, clockid=1, mutex=0x7b79d8001b40, cond=0x7b79d8001b68) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b79f3ffead0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 88, cond = 0x7b79d8001b68, mutex = 0x7b79d8001b40, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 88 seq = 44 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79d8001b68, mutex=0x7b79d8001b40, abstime=0x7b79f3ffeb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763714897600, -4973454815437255483, 135763714897600, -384, 0, 135763983329168, -4973454815491781435, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 19 (Thread 0x7b7a5affd6c0 (LWP 643544)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a5affcb50, op=137, expected=0, futex_word=0x619879e82174) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a5affcb50, clockid=0, expected=0, futex_word=0x619879e82174) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879e82174, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a5affcb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a5affcb50, clockid=1, mutex=0x619879e82120, cond=0x619879e82148) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a5affcad0, __canceltype = 1275072336, __prev = 0x0} cbuffer = {wseq = 16495, cond = 0x619879e82148, mutex = 0x619879e82120, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 16495 seq = 8247 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619879e82148, mutex=0x619879e82120, abstime=0x7b7a5affcb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135765442942656, -4972555413851992891, 135765442942656, -384, 2, 140723540985152, -4972555413906518843, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 20 (Thread 0x7b7a217fa6c0 (LWP 643578)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a217f9b50, op=137, expected=0, futex_word=0x7b79f80043b0) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a217f9b50, clockid=31610, expected=0, futex_word=0x7b79f80043b0) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79f80043b0, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a217f9b50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a217f9b50, clockid=1, mutex=0x7b79f8004360, cond=0x7b79f8004388) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a217f9ad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 92, cond = 0x7b79f8004388, mutex = 0x7b79f8004360, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 92 seq = 46 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79f8004388, mutex=0x7b79f8004360, abstime=0x7b7a217f9b50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135764478240448, -4972791807241351995, 135764478240448, -384, 0, 135764469840704, -4972791807295877947, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 21 (Thread 0x7b7a037fe6c0 (LWP 643579)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a037fdb50, op=137, expected=0, futex_word=0x7b79fc004af4) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a037fdb50, clockid=31610, expected=0, futex_word=0x7b79fc004af4) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79fc004af4, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a037fdb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a037fdb50, clockid=1, mutex=0x7b79fc004aa0, cond=0x7b79fc004ac8) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a037fdad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 87, cond = 0x7b79fc004ac8, mutex = 0x7b79fc004aa0, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 87 seq = 43 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79fc004ac8, mutex=0x7b79fc004aa0, abstime=0x7b7a037fdb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763974940352, -4972717042598146875, 135763974940352, -384, 0, 135764478236560, -4972717042652672827, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 22 (Thread 0x7b7a1b7fe6c0 (LWP 643568)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a1b7fdb50, op=137, expected=0, futex_word=0x619879e6b4e4) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a1b7fdb50, clockid=0, expected=0, futex_word=0x619879e6b4e4) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879e6b4e4, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a1b7fdb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a1b7fdb50, clockid=1, mutex=0x619879e6b490, cond=0x619879e6b4b8) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a1b7fdad0, __canceltype = 461363936, __prev = 0x0} cbuffer = {wseq = 15, cond = 0x619879e6b4b8, mutex = 0x619879e6b490, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 15 seq = 7 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619879e6b4b8, mutex=0x619879e6b490, abstime=0x7b7a1b7fdb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135764377593536, -4972699450412102459, 135764377593536, -384, 22, 140723541001360, -4972699450466628411, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 23 (Thread 0x7b7a227fc6c0 (LWP 643561)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=24984, cancel=true, abstime=0x7b7a227fbb50, op=137, expected=0, futex_word=0x619879e79244) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=24984, abstime=0x7b7a227fbb50, clockid=31610, expected=0, futex_word=0x619879e79244) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879e79244, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a227fbb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a227fbb50, clockid=1, mutex=0x619879e791f0, cond=0x619879e79218) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a227fbad0, __canceltype = 578796256, __prev = 0x0} cbuffer = {wseq = 15, cond = 0x619879e79218, mutex = 0x619879e791f0, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 15 seq = 7 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619879e79218, mutex=0x619879e791f0, abstime=0x7b7a227fbb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135764495025856, -4972785211245327163, 135764495025856, -384, 22, 140723541001360, -4972785211299853115, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 24 (Thread 0x7b7a45ffb6c0 (LWP 643550)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a45ffab50, op=137, expected=0, futex_word=0x619879e734a4) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a45ffab50, clockid=31610, expected=0, futex_word=0x619879e734a4) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879e734a4, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a45ffab50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a45ffab50, clockid=1, mutex=0x619879e73450, cond=0x619879e73478) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a45ffaad0, __canceltype = 1174383328, __prev = 0x0} cbuffer = {wseq = 15, cond = 0x619879e73478, mutex = 0x619879e73450, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 15 seq = 7 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619879e73478, mutex=0x619879e73450, abstime=0x7b7a45ffab50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135765090612928, -4972588398127084347, 135765090612928, -384, 22, 140723541001360, -4972588398181610299, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 25 (Thread 0x7b7a46ffd6c0 (LWP 643548)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a46ffcb50, op=137, expected=0, futex_word=0x619879e56534) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a46ffcb50, clockid=0, expected=0, futex_word=0x619879e56534) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879e56534, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a46ffcb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a46ffcb50, clockid=1, mutex=0x619879e564e0, cond=0x619879e56508) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a46ffcad0, __canceltype = -832072592, __prev = 0x0} cbuffer = {wseq = 15, cond = 0x619879e56508, mutex = 0x619879e564e0, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 15 seq = 7 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619879e56508, mutex=0x619879e564e0, abstime=0x7b7a46ffcb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135765107398336, -4972581802131059515, 135765107398336, -384, 22, 140723541001360, -4972581802185585467, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 26 (Thread 0x7b7a00ff96c0 (LWP 643585)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7b7a00ff8b50, op=137, expected=0, futex_word=0x7b79d8001640) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x7b7a00ff8b50, clockid=0, expected=0, futex_word=0x7b79d8001640) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79d8001640, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a00ff8b50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a00ff8b50, clockid=1, mutex=0x7b79d80015f0, cond=0x7b79d8001618) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a00ff8ad0, __canceltype = 16747248, __prev = 0x0} cbuffer = {wseq = 92, cond = 0x7b79d8001618, mutex = 0x7b79d80015f0, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 92 seq = 46 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79d8001618, mutex=0x7b79d80015f0, abstime=0x7b7a00ff8b50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763932976832, -4972718139425420091, 135763932976832, -384, 0, 135763983329168, -4972718139479946043, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 27 (Thread 0x7b79f17fa6c0 (LWP 643591)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31609, cancel=true, abstime=0x7b79f17f9b50, op=137, expected=0, futex_word=0x7b79e4001d70) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31609, abstime=0x7b79f17f9b50, clockid=31609, expected=0, futex_word=0x7b79e4001d70) at ./nptl/futex-internal.c:87 err = clockbit = 8091648 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79e4001d70, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b79f17f9b50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b79f17f9b50, clockid=1, mutex=0x7b79e4001d20, cond=0x7b79e4001d48) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b79f17f9ad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 92, cond = 0x7b79e4001d48, mutex = 0x7b79e4001d20, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 92 seq = 46 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79e4001d48, mutex=0x7b79e4001d20, abstime=0x7b79f17f9b50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763672934080, -4973460310311039803, 135763672934080, -384, 0, 135763966543760, -4973460310365565755, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 28 (Thread 0x7b7a20ff96c0 (LWP 643566)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a20ff8b50, op=137, expected=0, futex_word=0x619879e6a564) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a20ff8b50, clockid=0, expected=0, futex_word=0x619879e6a564) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879e6a564, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a20ff8b50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a20ff8b50, clockid=1, mutex=0x619879e6a510, cond=0x619879e6a538) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a20ff8ad0, __canceltype = 553618144, __prev = 0x0} cbuffer = {wseq = 15, cond = 0x619879e6a538, mutex = 0x619879e6a510, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 15 seq = 7 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619879e6a538, mutex=0x619879e6a510, abstime=0x7b7a20ff8b50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135764469847744, -4972788508169597755, 135764469847744, -384, 22, 140723541001360, -4972788508224123707, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 29 (Thread 0x7b7a19ffb6c0 (LWP 643781)): #0 0x00007b7acd91b4fd in __GI___poll (fds=0x7b79e000fa30, nfds=4, timeout=-1) at ../sysdeps/unix/sysv/linux/poll.c:29 sc_ret = -516 sc_cancel_oldtype = 0 sc_ret = #1 0x00007b7acdf7368e in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #2 0x00007b7acdf13a63 in g_main_context_iteration () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #3 0x00007b7ace483cb0 in QEventDispatcherGlib::processEvents(QFlags) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #4 0x00007b7ace19aa0b in QEventLoop::exec(QFlags) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #5 0x00007b7ace2a9126 in QThread::exec() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135764352415424, -4972702747336373051, 135764352415424, -384, 22, 140723541002000, -4972702747390899003, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #8 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 30 (Thread 0x7b7a467fc6c0 (LWP 643549)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=24984, cancel=true, abstime=0x7b7a467fbb50, op=137, expected=0, futex_word=0x619879e57124) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=24984, abstime=0x7b7a467fbb50, clockid=31610, expected=0, futex_word=0x619879e57124) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879e57124, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a467fbb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a467fbb50, clockid=1, mutex=0x619879e570d0, cond=0x619879e570f8) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a467fbad0, __canceltype = 1182776032, __prev = 0x0} cbuffer = {wseq = 15, cond = 0x619879e570f8, mutex = 0x619879e570d0, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 15 seq = 7 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x619879e570f8, mutex=0x619879e570d0, abstime=0x7b7a467fbb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135765099005632, -4972582901105816379, 135765099005632, -384, 22, 140723541001360, -4972582901160342331, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 31 (Thread 0x7b7a22ffd6c0 (LWP 643818)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a22ffcb50, op=137, expected=0, futex_word=0x61987af42360) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a22ffcb50, clockid=4, expected=0, futex_word=0x61987af42360) at ./nptl/futex-internal.c:87 err = clockbit = 1280 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x61987af42360, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a22ffcb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a22ffcb50, clockid=1, mutex=0x61987af42310, cond=0x61987af42338) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a22ffcad0, __canceltype = 587188960, __prev = 0x0} cbuffer = {wseq = 16, cond = 0x61987af42338, mutex = 0x61987af42310, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 16 seq = 8 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x61987af42338, mutex=0x61987af42310, abstime=0x7b7a22ffcb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135764503418560, -4972784112270570299, 135764503418560, -384, 22, 140723540997504, -4972784112325096251, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 32 (Thread 0x7b79f1ffb6c0 (LWP 643590)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31609, cancel=true, abstime=0x7b79f1ffab50, op=137, expected=0, futex_word=0x7b79e4001854) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31609, abstime=0x7b79f1ffab50, clockid=31609, expected=0, futex_word=0x7b79e4001854) at ./nptl/futex-internal.c:87 err = clockbit = 8091648 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79e4001854, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b79f1ffab50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b79f1ffab50, clockid=1, mutex=0x7b79e4001800, cond=0x7b79e4001828) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b79f1ffaad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 87, cond = 0x7b79e4001828, mutex = 0x7b79e4001800, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 87 seq = 43 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79e4001828, mutex=0x7b79e4001800, abstime=0x7b79f1ffab50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763681326784, -4973459211336282939, 135763681326784, -384, 0, 135763966543760, -4973459211390808891, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 33 (Thread 0x7b7a1affd6c0 (LWP 643580)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a1affcb50, op=137, expected=0, futex_word=0x7b79fc004f80) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a1affcb50, clockid=31610, expected=0, futex_word=0x7b79fc004f80) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79fc004f80, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a1affcb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a1affcb50, clockid=1, mutex=0x7b79fc004f30, cond=0x7b79fc004f58) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a1affcad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 88, cond = 0x7b79fc004f58, mutex = 0x7b79fc004f30, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 88 seq = 44 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79fc004f58, mutex=0x7b79fc004f30, abstime=0x7b7a1affcb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135764369200832, -4972696151340348219, 135764369200832, -384, 0, 135764478236560, -4972696151394874171, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 34 (Thread 0x7b79f0ff96c0 (LWP 643592)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31609, cancel=true, abstime=0x7b79f0ff8b50, op=137, expected=0, futex_word=0x7b79fc0025a4) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31609, abstime=0x7b79f0ff8b50, clockid=31609, expected=0, futex_word=0x7b79fc0025a4) at ./nptl/futex-internal.c:87 err = clockbit = 8091648 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79fc0025a4, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b79f0ff8b50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b79f0ff8b50, clockid=1, mutex=0x7b79fc002550, cond=0x7b79fc002578) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b79f0ff8ad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 79, cond = 0x7b79fc002578, mutex = 0x7b79fc002550, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 79 seq = 39 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79fc002578, mutex=0x7b79fc002550, abstime=0x7b79f0ff8b50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763664541376, -4973457011239285563, 135763664541376, -384, 0, 135764478236560, -4973457011293811515, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 35 (Thread 0x7b7a017fa6c0 (LWP 643584)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a017f9b50, op=137, expected=0, futex_word=0x7b79fc002080) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a017f9b50, clockid=31610, expected=0, futex_word=0x7b79fc002080) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79fc002080, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a017f9b50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a017f9b50, clockid=1, mutex=0x7b79fc002030, cond=0x7b79fc002058) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a017f9ad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 88, cond = 0x7b79fc002058, mutex = 0x7b79fc002030, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 88 seq = 44 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79fc002058, mutex=0x7b79fc002030, abstime=0x7b7a017f9b50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763941369536, -4972721438497174331, 135763941369536, -384, 0, 135764478236560, -4972721438551700283, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 36 (Thread 0x7b7a1a7fc6c0 (LWP 644258)): #0 0x00007b7acd91b4fd in __GI___poll (fds=0x7b7a0800dae0, nfds=4, timeout=-1) at ../sysdeps/unix/sysv/linux/poll.c:29 sc_ret = -516 sc_cancel_oldtype = 0 sc_ret = #1 0x00007b7acdf7368e in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #2 0x00007b7acdf13a63 in g_main_context_iteration () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 No symbol table info available. #3 0x00007b7ace483cb0 in QEventDispatcherGlib::processEvents(QFlags) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #4 0x00007b7ace19aa0b in QEventLoop::exec(QFlags) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #5 0x00007b7ace2a9126 in QThread::exec() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135764360808128, -4972697250315105083, 135764360808128, -384, 22, 140723541003840, -4972697250369631035, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #8 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 37 (Thread 0x7b7a02ffd6c0 (LWP 643581)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a02ffcb50, op=137, expected=0, futex_word=0x7b79fc005274) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a02ffcb50, clockid=31610, expected=0, futex_word=0x7b79fc005274) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79fc005274, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a02ffcb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a02ffcb50, clockid=1, mutex=0x7b79fc005220, cond=0x7b79fc005248) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a02ffcad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 87, cond = 0x7b79fc005248, mutex = 0x7b79fc005220, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 87 seq = 43 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79fc005248, mutex=0x7b79fc005220, abstime=0x7b7a02ffcb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763966547648, -4972713743526392635, 135763966547648, -384, 0, 135764478236560, -4972713743580918587, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 38 (Thread 0x7b7ab0bff6c0 (LWP 643511)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x6198782a3588) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x6198782a3588) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 393 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x6198782a3588, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89b7ed in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x6198782a3530, cond=0x6198782a3560) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7ab0bfeae0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 0, cond = 0x6198782a3560, mutex = 0x6198782a3530, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 0 seq = 0 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_wait (cond=0x6198782a3560, mutex=0x6198782a3530) at ./nptl/pthread_cond_wait.c:627 No locals. #5 0x00007b7ab9b9359d in ?? () from /lib/x86_64-linux-gnu/libgallium-25.0.7-0ubuntu0.24.04.2.so No symbol table info available. #6 0x00007b7ab9b6054b in ?? () from /lib/x86_64-linux-gnu/libgallium-25.0.7-0ubuntu0.24.04.2.so No symbol table info available. #7 0x00007b7ab9b934cc in ?? () from /lib/x86_64-linux-gnu/libgallium-25.0.7-0ubuntu0.24.04.2.so No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135766881597120, -4973034252239631163, 135766881597120, -384, 2, 140723541002144, -4973034252294157115, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 39 (Thread 0x7b79f37fe6c0 (LWP 643587)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31609, cancel=true, abstime=0x7b79f37fdb50, op=137, expected=0, futex_word=0x7b79e4006d44) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31609, abstime=0x7b79f37fdb50, clockid=31609, expected=0, futex_word=0x7b79e4006d44) at ./nptl/futex-internal.c:87 err = clockbit = 8091648 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79e4006d44, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b79f37fdb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b79f37fdb50, clockid=1, mutex=0x7b79e4006cf0, cond=0x7b79e4006d18) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b79f37fdad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 87, cond = 0x7b79e4006d18, mutex = 0x7b79e4006cf0, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 87 seq = 43 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79e4006d18, mutex=0x7b79e4006cf0, abstime=0x7b79f37fdb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763706504896, -4973455914412012347, 135763706504896, -384, 0, 135763966543760, -4973455914466538299, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 40 (Thread 0x7b7a01ffb6c0 (LWP 643583)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a01ffab50, op=137, expected=0, futex_word=0x7b79fc001b64) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a01ffab50, clockid=31610, expected=0, futex_word=0x7b79fc001b64) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79fc001b64, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a01ffab50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a01ffab50, clockid=1, mutex=0x7b79fc001b10, cond=0x7b79fc001b38) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a01ffaad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 83, cond = 0x7b79fc001b38, mutex = 0x7b79fc001b10, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 83 seq = 41 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79fc001b38, mutex=0x7b79fc001b10, abstime=0x7b7a01ffab50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763949762240, -4972720339522417467, 135763949762240, -384, 0, 135764478236560, -4972720339576943419, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 41 (Thread 0x7b7a027fc6c0 (LWP 643582)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x7b7a027fbb50, op=137, expected=0, futex_word=0x7b79fc005790) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x7b7a027fbb50, clockid=31610, expected=0, futex_word=0x7b79fc005790) at ./nptl/futex-internal.c:87 err = clockbit = 8092416 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79fc005790, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b7a027fbb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b7a027fbb50, clockid=1, mutex=0x7b79fc005740, cond=0x7b79fc005768) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a027fbad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 80, cond = 0x7b79fc005768, mutex = 0x7b79fc005740, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 80 seq = 40 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79fc005768, mutex=0x7b79fc005740, abstime=0x7b7a027fbb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763958154944, -4972714842501149499, 135763958154944, -384, 0, 135764478236560, -4972714842555675451, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 42 (Thread 0x7b7a5b7fe6c0 (LWP 643535)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31610, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x619879780020) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31610, abstime=0x0, clockid=0, expected=0, futex_word=0x619879780020) at ./nptl/futex-internal.c:87 err = clockbit = 256 op = 393 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x619879780020, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89b7ed in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x61987977ffd0, cond=0x61987977fff8) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b7a5b7fdad0, __canceltype = 935078409, __prev = 0x0} cbuffer = {wseq = 4, cond = 0x61987977fff8, mutex = 0x61987977ffd0, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 4 seq = 2 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_wait (cond=0x61987977fff8, mutex=0x61987977ffd0) at ./nptl/pthread_cond_wait.c:627 No locals. #5 0x00007b7ace35575b in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7acf2f0778 in QFileInfoGatherer::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Gui.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135765451335360, -4972558712923747131, 0, -384, 2, 140723541003552, -4972558712978273083, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 43 (Thread 0x7b79f27fc6c0 (LWP 643589)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31609, cancel=true, abstime=0x7b79f27fbb50, op=137, expected=0, futex_word=0x7b79e40076f4) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31609, abstime=0x7b79f27fbb50, clockid=31609, expected=0, futex_word=0x7b79e40076f4) at ./nptl/futex-internal.c:87 err = clockbit = 8091648 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79e40076f4, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b79f27fbb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b79f27fbb50, clockid=1, mutex=0x7b79e40076a0, cond=0x7b79e40076c8) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b79f27fbad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 91, cond = 0x7b79e40076c8, mutex = 0x7b79e40076a0, private = 0} err = g = 1 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 91 seq = 45 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79e40076c8, mutex=0x7b79e40076a0, abstime=0x7b79f27fbb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763689719488, -4973453714315014971, 135763689719488, -384, 0, 135763966543760, -4973453714369540923, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals. Thread 44 (Thread 0x7b79f2ffd6c0 (LWP 643588)): #0 0x00007b7acd898d71 in __futex_abstimed_wait_common64 (private=31609, cancel=true, abstime=0x7b79f2ffcb50, op=137, expected=0, futex_word=0x7b79e40071d0) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = resultvar = __arg6 = __arg5 = __arg4 = __arg3 = __arg2 = __arg1 = _a6 = _a5 = _a4 = _a3 = _a2 = _a1 = #1 __futex_abstimed_wait_common (cancel=true, private=31609, abstime=0x7b79f2ffcb50, clockid=31609, expected=0, futex_word=0x7b79e40071d0) at ./nptl/futex-internal.c:87 err = clockbit = 8091648 op = 137 err = clockbit = op = #2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7b79e40071d0, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7b79f2ffcb50, private=private@entry=0) at ./nptl/futex-internal.c:139 No locals. #3 0x00007b7acd89bc8e in __pthread_cond_wait_common (abstime=0x7b79f2ffcb50, clockid=1, mutex=0x7b79e4007180, cond=0x7b79e40071a8) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7b7acd89b4b0 <__condvar_cleanup_waiting>, __arg = 0x7b79f2ffcad0, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 80, cond = 0x7b79e40071a8, mutex = 0x7b79e4007180, private = 0} err = g = 0 flags = g1_start = maxspin = 0 signals = result = 0 wseq = 80 seq = 40 private = 0 maxspin = err = result = wseq = g = seq = flags = private = signals = done = g1_start = spin = buffer = cbuffer = s = #4 ___pthread_cond_timedwait64 (cond=0x7b79e40071a8, mutex=0x7b79e4007180, abstime=0x7b79f2ffcb50) at ./nptl/pthread_cond_wait.c:652 flags = clockid = 1 #5 0x00007b7ace3556bf in QWaitCondition::wait(QMutex*, QDeadlineTimer) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #6 0x00007b7ace3521a9 in QThreadPoolThread::run() () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #7 0x00007b7ace3482be in QThreadPrivate::start(void*) () from /home/qtrob/dev/g++-13.3.0/qt-6.9.3-nowebengine-r/qtbase/lib/libQt6Core.so.6 No symbol table info available. #8 0x00007b7acd89caa4 in start_thread (arg=) at ./nptl/pthread_create.c:447 ret = pd = out = unwind_buf = {cancel_jmp_buf = {{jmp_buf = {135763698112192, -4973452615340258107, 135763698112192, -384, 0, 135763966543760, -4973452615394784059, -4972886727301395259}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = #9 0x00007b7acd929c6c in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:78 No locals.