Documentation fixes.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13094 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2019-10-07 15:21:57 +00:00
parent 07cd318987
commit 03d7cb9f9e
1 changed files with 5 additions and 5 deletions

View File

@ -31,12 +31,12 @@
* @p thread_t structure.
* Operations defined for events:
* - <b>Wait</b>, the invoking thread goes to sleep until a certain
* AND/OR combination of events become pending.
* AND/OR combination of events are signaled.
* - <b>Clear</b>, a mask of events is cleared from the pending
* events, the cleared events mask is returned (only the
* events that were actually pending and then cleared).
* - <b>Signal</b>, an events mask is directly ORed to the mask of the
* signaled thread.
* - <b>Signal</b>, an events mask is directly ORed to the mask of
* the signaled thread.
* - <b>Broadcast</b>, each thread registered on an Event Source is
* signaled with the events specified in its Event Listener.
* - <b>Dispatch</b>, an events mask is scanned and for each bit set
@ -50,8 +50,8 @@
* An unlimited number of Event Sources can exists in a system and
* each thread can be listening on an unlimited number of
* them.
* @pre In order to use the Events APIs the @p CH_CFG_USE_EVENTS option must be
* enabled in @p chconf.h.
* @pre In order to use the Events APIs the @p CH_CFG_USE_EVENTS option
* must be enabled in @p chconf.h.
* @post Enabling events requires 1-4 (depending on the architecture)
* extra bytes in the @p thread_t structure.
* @{