diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Doxyfile | 1 | ||||
-rw-r--r-- | docs/ch.txt | 3 |
2 files changed, 3 insertions, 1 deletions
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 @@ * <li>Easily portable.</li>
* <li>Mixed programming model:</li>
* <ul>
- * <li>Synchronous, using semaphores/mutexes and/or messages.</li>
+ * <li>Synchronous, using semaphores/mutexes/condvars and/or messages.</li>
* <li>Asynchronous, using event sources.</li>
* <li>Mix of the above models, multiple threads listening to multiple event
* sources while serving message queues.</li>
@@ -32,6 +32,7 @@ * <li>Unlimited number of virtual timers.</li>
* <li>Unlimited number of semaphores.</li>
* <li>Unlimited number of mutexes.</li>
+ * <li>Unlimited number of condvars.</li>
* <li>Unlimited number of event sources.</li>
* <li>Unlimited number of messages in queue.</li>
* <li>Unlimited number of I/O queues.</li>
|