summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/thread')
-rw-r--r--src/corelib/thread/qatomic.cpp2
-rw-r--r--src/corelib/thread/qmutex.cpp3
-rw-r--r--src/corelib/thread/qmutexpool.cpp1
-rw-r--r--src/corelib/thread/qreadwritelock.cpp3
-rw-r--r--src/corelib/thread/qrunnable.cpp1
-rw-r--r--src/corelib/thread/qsemaphore.cpp1
-rw-r--r--src/corelib/thread/qthread.cpp1
-rw-r--r--src/corelib/thread/qthreadpool.cpp1
-rw-r--r--src/corelib/thread/qthreadstorage.cpp1
-rw-r--r--src/corelib/thread/qwaitcondition.qdoc1
10 files changed, 15 insertions, 0 deletions
diff --git a/src/corelib/thread/qatomic.cpp b/src/corelib/thread/qatomic.cpp
index abd2cc1c93..614e8c5496 100644
--- a/src/corelib/thread/qatomic.cpp
+++ b/src/corelib/thread/qatomic.cpp
@@ -41,6 +41,7 @@
/*!
\class QAtomicInt
+ \inmodule QtCore
\brief The QAtomicInt class provides platform-independent atomic operations on integers.
\since 4.4
@@ -598,6 +599,7 @@
/*!
\class QAtomicPointer
+ \inmodule QtCore
\brief The QAtomicPointer class is a template class that provides platform-independent atomic operations on pointers.
\since 4.4
diff --git a/src/corelib/thread/qmutex.cpp b/src/corelib/thread/qmutex.cpp
index f54d896b74..a88e3ceef9 100644
--- a/src/corelib/thread/qmutex.cpp
+++ b/src/corelib/thread/qmutex.cpp
@@ -57,6 +57,7 @@ QT_BEGIN_NAMESPACE
/*
\class QBasicMutex
+ \inmodule QtCore
\brief QMutex POD
\internal
@@ -70,6 +71,7 @@ QT_BEGIN_NAMESPACE
/*!
\class QMutex
+ \inmodule QtCore
\brief The QMutex class provides access serialization between threads.
\threadsafe
@@ -239,6 +241,7 @@ bool QBasicMutex::isRecursive() {
/*!
\class QMutexLocker
+ \inmodule QtCore
\brief The QMutexLocker class is a convenience class that simplifies
locking and unlocking mutexes.
diff --git a/src/corelib/thread/qmutexpool.cpp b/src/corelib/thread/qmutexpool.cpp
index df1d3497de..4faf2fcc6b 100644
--- a/src/corelib/thread/qmutexpool.cpp
+++ b/src/corelib/thread/qmutexpool.cpp
@@ -50,6 +50,7 @@ Q_GLOBAL_STATIC_WITH_ARGS(QMutexPool, globalMutexPool, (QMutex::Recursive))
/*!
\class QMutexPool
+ \inmodule QtCore
\brief The QMutexPool class provides a pool of QMutex objects.
\internal
diff --git a/src/corelib/thread/qreadwritelock.cpp b/src/corelib/thread/qreadwritelock.cpp
index 1aba2f537e..2c2718162f 100644
--- a/src/corelib/thread/qreadwritelock.cpp
+++ b/src/corelib/thread/qreadwritelock.cpp
@@ -52,6 +52,7 @@
QT_BEGIN_NAMESPACE
/*! \class QReadWriteLock
+ \inmodule QtCore
\brief The QReadWriteLock class provides read-write locking.
\threadsafe
@@ -427,6 +428,7 @@ void QReadWriteLock::unlock()
/*!
\class QReadLocker
+ \inmodule QtCore
\brief The QReadLocker class is a convenience class that
simplifies locking and unlocking read-write locks for read access.
@@ -499,6 +501,7 @@ void QReadWriteLock::unlock()
/*!
\class QWriteLocker
+ \inmodule QtCore
\brief The QWriteLocker class is a convenience class that
simplifies locking and unlocking read-write locks for write access.
diff --git a/src/corelib/thread/qrunnable.cpp b/src/corelib/thread/qrunnable.cpp
index 933a5b922c..81cbb7b059 100644
--- a/src/corelib/thread/qrunnable.cpp
+++ b/src/corelib/thread/qrunnable.cpp
@@ -41,6 +41,7 @@
/*!
\class QRunnable
+ \inmodule QtCore
\since 4.4
\brief The QRunnable class is the base class for all runnable objects.
diff --git a/src/corelib/thread/qsemaphore.cpp b/src/corelib/thread/qsemaphore.cpp
index e5b460b725..427349c41b 100644
--- a/src/corelib/thread/qsemaphore.cpp
+++ b/src/corelib/thread/qsemaphore.cpp
@@ -51,6 +51,7 @@ QT_BEGIN_NAMESPACE
/*!
\class QSemaphore
+ \inmodule QtCore
\brief The QSemaphore class provides a general counting semaphore.
\threadsafe
diff --git a/src/corelib/thread/qthread.cpp b/src/corelib/thread/qthread.cpp
index 424fef046f..c83c6ead45 100644
--- a/src/corelib/thread/qthread.cpp
+++ b/src/corelib/thread/qthread.cpp
@@ -171,6 +171,7 @@ QThreadPrivate::~QThreadPrivate()
/*!
\class QThread
+ \inmodule QtCore
\brief The QThread class provides platform-independent threads.
\ingroup thread
diff --git a/src/corelib/thread/qthreadpool.cpp b/src/corelib/thread/qthreadpool.cpp
index 1c3672bfb3..ee1abc8636 100644
--- a/src/corelib/thread/qthreadpool.cpp
+++ b/src/corelib/thread/qthreadpool.cpp
@@ -347,6 +347,7 @@ void QThreadPoolPrivate::stealRunnable(QRunnable *runnable)
/*!
\class QThreadPool
+ \inmodule QtCore
\brief The QThreadPool class manages a collection of QThreads.
\since 4.4
\threadsafe
diff --git a/src/corelib/thread/qthreadstorage.cpp b/src/corelib/thread/qthreadstorage.cpp
index caa2ac907f..05ab3af52f 100644
--- a/src/corelib/thread/qthreadstorage.cpp
+++ b/src/corelib/thread/qthreadstorage.cpp
@@ -212,6 +212,7 @@ void QThreadStorageData::finish(void **p)
/*!
\class QThreadStorage
+ \inmodule QtCore
\brief The QThreadStorage class provides per-thread data storage.
\threadsafe
diff --git a/src/corelib/thread/qwaitcondition.qdoc b/src/corelib/thread/qwaitcondition.qdoc
index 6ee03a9844..954d0ae1e1 100644
--- a/src/corelib/thread/qwaitcondition.qdoc
+++ b/src/corelib/thread/qwaitcondition.qdoc
@@ -27,6 +27,7 @@
/*!
\class QWaitCondition
+ \inmodule QtCore
\brief The QWaitCondition class provides a condition variable for
synchronizing threads.