summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread/qthread.cpp
diff options
context:
space:
mode:
authorMårten Nordheim <marten.nordheim@qt.io>2024-12-16 12:50:23 +0100
committerMårten Nordheim <marten.nordheim@qt.io>2024-12-18 12:26:09 +0100
commitbbcf47a07d3ec138016d4f997c9b4849598c2f10 (patch)
tree7fdec27cf93019ab9057243efdfeac500c212ba8 /src/corelib/thread/qthread.cpp
parent2c71fdf043ca94d1c567f169d51245e2702bec19 (diff)
QThread: Link to QThreadPool::(set)serviceLevel
QThreadPool's functions already links to the QThread ones, but they didn't link back. From the API review. Pick-to: 6.9 Change-Id: I02853d8110806f735b748d022a1cfaea5a72d603 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'src/corelib/thread/qthread.cpp')
-rw-r--r--src/corelib/thread/qthread.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/thread/qthread.cpp b/src/corelib/thread/qthread.cpp
index 5af1787fb11..08e8368043e 100644
--- a/src/corelib/thread/qthread.cpp
+++ b/src/corelib/thread/qthread.cpp
@@ -567,7 +567,7 @@ uint QThread::stackSize() const
\value Eco The scheduler should run this thread to an energy-efficient CPU
core.
- \sa Priority, serviceLevel()
+ \sa Priority, serviceLevel(), QThreadPool::serviceLevel()
*/
/*!
@@ -581,7 +581,7 @@ uint QThread::stackSize() const
The function call will complete successfully on other platforms but will
not currently have any effect.
- \sa serviceLevel()
+ \sa serviceLevel(), QThreadPool::setServiceLevel()
*/
void QThread::setServiceLevel(QualityOfService serviceLevel)
{
@@ -601,7 +601,7 @@ void QThread::setServiceLevel(QualityOfService serviceLevel)
Return the current Quality of Service level of the thread.
- \sa setServiceLevel()
+ \sa setServiceLevel(), QThreadPool::serviceLevel()
*/
QThread::QualityOfService QThread::serviceLevel() const
{