diff --git a/docs/Doxyfile b/docs/Doxyfile
index 93ad2cc0a..bef8efd2f 100644
--- a/docs/Doxyfile
+++ b/docs/Doxyfile
@@ -255,6 +255,7 @@ PREDEFINED = __JUST_STUBS__ \
CH_USE_SEMAPHORES_TIMEOUT \
CH_USE_MUTEXES \
CH_USE_CONDVARS \
+ CH_USE_CONDVARS_TIMEOUT \
CH_USE_EVENTS \
CH_USE_EVENTS_TIMEOUT \
CH_USE_EXIT_EVENT \
diff --git a/docs/ch.txt b/docs/ch.txt
index bfaf66717..4ef7a394c 100644
--- a/docs/ch.txt
+++ b/docs/ch.txt
@@ -13,7 +13,7 @@
*
Easily portable.
* Mixed programming model:
*
- * - Synchronous, using semaphores/mutexes and/or messages.
+ * - Synchronous, using semaphores/mutexes/condvars and/or messages.
* - Asynchronous, using event sources.
* - Mix of the above models, multiple threads listening to multiple event
* sources while serving message queues.
@@ -32,6 +32,7 @@
* - Unlimited number of virtual timers.
* - Unlimited number of semaphores.
* - Unlimited number of mutexes.
+ * - Unlimited number of condvars.
* - Unlimited number of event sources.
* - Unlimited number of messages in queue.
* - Unlimited number of I/O queues.