git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@513 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
c247b6b26c
commit
6c4445c144
|
@ -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 \
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue