head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2026.04.30.06.38.37; author adam; state Exp; branches; next ; commitid nIoyarLNs03FUWDG; desc @@ 1.1 log @qt6: updated to 6.11.0 The 6.11 release for Qt Framework is now available, with improved performance, newly supported techniques and capabilities on graphics, connectivity and languages, not to mention a whole new approach to asynchronous C++ coding. Take a closer look. https://www.qt.io/blog/qt-6.11-released @ text @$NetBSD$ Support NetBSD. --- src/corelib/thread/qthread_unix.cpp.orig 2026-03-27 11:03:02.499247374 +0000 +++ src/corelib/thread/qthread_unix.cpp @@@@ -350,6 +350,8 @@@@ static void setCurrentThreadName(QThread *thr, String pthread_setname_np(name); # elif defined(Q_OS_OPENBSD) pthread_set_name_np(pthread_self(), name); +# elif defined(Q_OS_NETBSD) + pthread_setname_np(pthread_self(), name, nullptr); # elif defined(Q_OS_QNX) || defined(Q_OS_BSD4) pthread_setname_np(pthread_self(), name); # else @