diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-11-15 11:33:38 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-11-15 11:33:38 +0000 |
commit | 6c4445c1441d3652e7e82c38d6cfed0e2362d08b (patch) | |
tree | 0f2e41d7b9218129587f336ddbbed1342cb33cbd | |
parent | c247b6b26c704931435490ce51fe42da7bf67be5 (diff) | |
download | ChibiOS-6c4445c1441d3652e7e82c38d6cfed0e2362d08b.tar.gz ChibiOS-6c4445c1441d3652e7e82c38d6cfed0e2362d08b.tar.bz2 ChibiOS-6c4445c1441d3652e7e82c38d6cfed0e2362d08b.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@513 35acf78f-673a-0410-8e92-d51de3d6d3f4
-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>
|